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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #003D5C;
    background: #fff;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: #d4e8d4;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: #003D5C;
    text-decoration: none;
    margin-right: 25px;
    font-weight: 400;
}

.top-links a:hover {
    color: #1b3b72;
}

.top-search input {
    padding: 5px 15px;
    border: 1px solid #b8d4b8;
    background: #fff;
    font-size: 12px;
    width: 200px;
}

/* ================================ */
/* DESKTOP HEADER (New Structure)   */
/* ================================ */

.desktop-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 10000;
}

/* Top Bar (Search) */
.desktop-top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.desktop-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-top-left {
    flex: 1;
}

.desktop-top-right {
    display: flex;
    align-items: center;
}

.desktop-search-form {
    display: flex;
    align-items: center;
    gap: 0;
}

.desktop-search-input {
    width: 300px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.desktop-search-input:focus {
    border-color: #1b3b72;
}

.desktop-search-btn {
    padding: 8px 15px;
    background: #1b3b72;
    border: 1px solid #1b3b72;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.desktop-search-btn:hover {
    background: #5a8a5a;
    border-color: #5a8a5a;
}

.desktop-search-btn svg {
    color: #fff;
}

/* Main Header Row (Logo + Menu) */
.desktop-main-header {
    padding: 20px 0;
    position: relative;
    overflow: visible;
}

.desktop-main-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

/* Desktop Logo */
.desktop-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.desktop-logo img {
    height: 75px;
    width: auto;
}

.desktop-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.desktop-logo .logo-title {
    font-size: 26px;
    font-weight: 600;
    color: #1b3b72;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.desktop-logo .logo-subtitle {
    font-size: 11px;
    color: #003D5C;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
}

.desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.desktop-menu > li {
    position: relative;
}

.desktop-menu > li > a {
    color: #1b3b72;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.desktop-menu > li > a:hover {
    color: #5a8a5a;
}

/* Desktop Dropdown Menus */
.desktop-menu .menu-item-has-children > a::after {
    content: '';
    display: none;
}

.desktop-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 99999;
}

.desktop-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.desktop-menu .sub-menu li {
    position: relative;
}

.desktop-menu .sub-menu li > a {
    display: block;
    padding: 12px 20px;
    color: #003D5C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.desktop-menu .sub-menu li:last-child > a {
    border-bottom: none;
}

.desktop-menu .sub-menu li > a:hover {
    background: #f8fdf8;
    color: #1b3b72;
    padding-left: 25px;
}

/* Nested Submenus (3rd level) */
.desktop-menu .sub-menu .menu-item-has-children > a::after {
    content: '›';
    float: right;
    font-size: 18px;
    margin-left: 10px;
}

.desktop-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    z-index: 100000;
}

.desktop-menu .sub-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Desktop Menu Icons (Cart & User) */
.desktop-menu .menu-item-icon {
    display: flex;
    align-items: center;
}

.desktop-menu .menu-item-icon a {
    color: #1b3b72;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.desktop-menu .menu-item-icon a:hover {
    color: #5a8a5a;
}

.desktop-menu .menu-item-icon svg {
    width: 24px;
    height: 24px;
}

.desktop-menu .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ================================ */
/* OLD MAIN HEADER (Keep for legacy) */
/* ================================ */

/* Main Header */
.main-header {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 28px;
    font-weight: 600;
    color: #1b3b72;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    color: #003D5C;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.main-nav > a,
.main-nav .dropdown-toggle {
    color: #1b3b72;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    padding: 10px 0;
    position: relative;
}

.main-nav > a:hover,
.main-nav .dropdown-toggle:hover {
    color: #5a8a5a;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff !important;
    min-width: 280px;
    max-height: none !important;
    height: auto !important;
    overflow-y: visible !important;
    overflow-x: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    margin-top: 0;
    z-index: 99999;
    border-radius: 4px;
    padding: 0;
}

.dropdown:hover > .dropdown-menu {
    display: block !important;
}

.dropdown-menu > a,
.dropdown-item > a {
    display: block !important;
    padding: 12px 20px;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
}

.dropdown-menu > a:hover,
.dropdown-item > a:hover {
    background: #f8fdf8;
    color: #1b3b72;
    padding-left: 25px;
}

.dropdown-menu > a:last-child,
.dropdown-menu > .dropdown-item:last-child {
    border-bottom: none;
}

/* Force visibility of all dropdown items */
.dropdown-menu > *,
.submenu > * {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Specific fixes for dropdown children */
.dropdown-menu a,
.dropdown-menu .dropdown-item,
.submenu a {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Ensure submenu items are always rendered */
.has-submenu .submenu a {
    display: block !important;
}

/* CRITICAL FIX - Force all items in "Saznaj više" dropdown to always be visible */
.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu > a,
.dropdown:hover .dropdown-menu > .dropdown-item,
.dropdown:hover .dropdown-menu > .dropdown-item > a,
.has-submenu:hover .submenu,
.has-submenu:hover .submenu a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* Ultra specific fix for main navigation dropdown */
.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown:hover > .dropdown-menu,
.main-nav .dropdown .dropdown-menu:hover {
    display: block !important;
}

.main-nav .dropdown .dropdown-menu > a,
.main-nav .dropdown .dropdown-menu > .dropdown-item,
.main-nav .dropdown:hover .dropdown-menu > a,
.main-nav .dropdown:hover .dropdown-menu > .dropdown-item {
    display: block !important;
    visibility: visible !important;
}

/* Prevent dropdown from closing when hovering over it */
.dropdown-menu:hover {
    display: block !important;
}

/* Scrollbar styling for dropdowns */
.dropdown-menu::-webkit-scrollbar,
.submenu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track,
.submenu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.submenu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover,
.submenu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Ensure dropdown items are visible */
.dropdown-item {
    position: relative !important;
    display: block !important;
    pointer-events: auto !important;
    width: 100%;
}

.dropdown-menu > a,
.dropdown-menu > .dropdown-item {
    pointer-events: auto !important;
    display: block !important;
}

/* Submenu */
.has-submenu {
    position: relative;
}

.has-submenu > a::after {
    content: '›';
    float: right;
    font-size: 18px;
}

.submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff !important;
    min-width: 250px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    margin-left: 0;
    z-index: 100000;
    border-radius: 4px;
}

.has-submenu:hover > .submenu {
    display: block !important;
}

.submenu a {
    padding: 12px 20px;
    display: block !important;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
}

.submenu a:hover {
    background: #f8fdf8;
    color: #1b3b72;
    padding-left: 25px;
}

.submenu a:last-child {
    border-bottom: none;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    color: #1b3b72;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    color: #5a8a5a;
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    height: 500px;
    background-image: url('https://shopbeocompass.rs/wp-content/uploads/2025/09/beocompass-website.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.85) 0%, rgba(212, 232, 212, 0.85) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 18px;
    color: #1b3b72;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    color: #1b3b72;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 16px;
    color: #1b3b72;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    color: #1b3b72;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15px;
    color: #003D5C;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #fafafa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #1b3b72;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.category-card.active {
    border-color: #1b3b72;
    background: #f8fdf8;
}

.category-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 16px;
    color: #003D5C;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-badge {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.feature-badge[data-animation="left"] {
    animation: slideInLeft 0.8s ease forwards;
}

.feature-badge[data-animation="right"] {
    animation: slideInRight 0.8s ease forwards;
}

.feature-badge:nth-child(1) { animation-delay: 0.1s; }
.feature-badge:nth-child(2) { animation-delay: 0.2s; }
.feature-badge:nth-child(3) { animation-delay: 0.3s; }
.feature-badge:nth-child(4) { animation-delay: 0.4s; }
.feature-badge:nth-child(5) { animation-delay: 0.5s; }

.badge-icon {
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.feature-badge:hover .badge-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-badge h4 {
    font-size: 16px;
    color: #1b3b72;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge p {
    font-size: 12px;
    color: #003D5C;
    line-height: 1.4;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tonotil Hero Section */
.tonotil-hero {
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #2e7d32;
    position: relative;
}

.tonotil-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(225, 242, 225, 0.85);
    z-index: 1;
}

.tonotil-hero .container {
    position: relative;
    z-index: 2;
}

.tonotil-main-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tonotil-subtitle {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    font-style: italic;
}

.tonotil-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quality Badges Section */
.quality-badges-section {
    padding: 80px 0;
    background: #fff;
}

.quality-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.quality-badge {
    text-align: center;
    padding: 30px;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.quality-badge[data-animation="left"] {
    animation: slideInLeft 0.8s ease forwards;
}

.quality-badge[data-animation="right"] {
    animation: slideInRight 0.8s ease forwards;
}

.quality-badge:nth-child(1) { animation-delay: 0.1s; }
.quality-badge:nth-child(2) { animation-delay: 0.2s; }
.quality-badge:nth-child(3) { animation-delay: 0.3s; }
.quality-badge:nth-child(4) { animation-delay: 0.4s; }

.quality-icon {
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.quality-icon img {
    width: 120px;
    height: 120px;
}

.quality-badge:hover .quality-icon {
    transform: scale(1.15) rotate(5deg);
}

.quality-badge h4 {
    font-size: 20px;
    color: #1b3b72;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Tonotil Section */
.why-tonotil-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.why-tonotil-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.why-tonotil-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-tonotil-content h2 {
    font-size: 40px;
    color: #1b3b72;
    margin-bottom: 40px;
    font-weight: 600;
}

.why-tonotil-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.why-tonotil-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 25px;
    text-align: center;
}

.why-tonotil-text p:last-of-type {
    margin-bottom: 35px;
}

.why-tonotil-text strong {
    color: #1976d2;
    font-weight: 600;
}

.btn-learn-more-tonotil {
    display: inline-block;
    background: #1b3b72;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-learn-more-tonotil:hover {
    background: #142b52;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 59, 114, 0.3);
}

/* Ingredients Section with Flip Cards */
.ingredients-section {
    padding: 80px 0;
    background: #fff;
}

.flip-card {
    background-color: transparent;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 0;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
}

.flip-card-front {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #1976d2;
}

.flip-card-back {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-front h3 {
    font-size: 24px;
    color: #1976d2;
    font-weight: 600;
}

/* L-Karnitin card with background image */
.flip-card-karnitin .flip-card-front {
    background-image: url('https://cdn.prod.website-files.com/6674270538eb1de30d0828f3/668c2f88e2152df390daefa0_Tonotil%20Srbija%20Snaga%20(1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-karnitin .flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(187, 222, 251, 0.85) 100%);
    border-radius: 10px;
    z-index: 0;
}

.flip-card-karnitin .flip-card-front h3 {
    position: relative;
    z-index: 1;
}

.flip-card-karnitin .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

/* L-Arginin card with background image */
.flip-card-arginin .flip-card-front {
    background-image: url('https://cdn.prod.website-files.com/6674270538eb1de30d0828f3/668c2e33c62129430dd68088_Tonotil%20Srbija%20Srce.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-arginin .flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(187, 222, 251, 0.85) 100%);
    border-radius: 10px;
    z-index: 0;
}

.flip-card-arginin .flip-card-front h3 {
    position: relative;
    z-index: 1;
}

.flip-card-arginin .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

/* L-Glutamin card with background image */
.flip-card-glutamin .flip-card-front {
    background-image: url('https://cdn.prod.website-files.com/6674270538eb1de30d0828f3/668c2dc88b6a0b0db20967bf_Tonotil%20Srbija%20L%20glutamin%20(2).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-glutamin .flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(187, 222, 251, 0.85) 100%);
    border-radius: 10px;
    z-index: 0;
}

.flip-card-glutamin .flip-card-front h3 {
    position: relative;
    z-index: 1;
}

.flip-card-glutamin .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

/* Fosfoserin card with background image */
.flip-card-fosfoserin .flip-card-front {
    background-image: url('https://cdn.prod.website-files.com/6674270538eb1de30d0828f3/668c2e794a04201dd450f247_Tonotil%20Srbija%20Mozak.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-fosfoserin .flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(187, 222, 251, 0.85) 100%);
    border-radius: 10px;
    z-index: 0;
}

.flip-card-fosfoserin .flip-card-front h3 {
    position: relative;
    z-index: 1;
}

.flip-card-fosfoserin .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

/* Fosfotreonin card with background image */
.flip-card-fosfotreonin .flip-card-front {
    background-image: url('https://cdn.prod.website-files.com/6674270538eb1de30d0828f3/668c2eb1c86d7797f3dc2ffc_Tonotil%20Srbija%20Energija%20(2).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-fosfotreonin .flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(187, 222, 251, 0.85) 100%);
    border-radius: 10px;
    z-index: 0;
}

.flip-card-fosfotreonin .flip-card-front h3 {
    position: relative;
    z-index: 1;
}

.flip-card-fosfotreonin .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

/* Vitamin B12 card with background image */
.flip-card-b12 .flip-card-front {
    background-image: url('https://cdn.prod.website-files.com/6674270538eb1de30d0828f3/668c2ef9e9e0168bb9d1aee8_Tonotil%20Srbija%20Crvena%20Krvna%20Zrnca.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-b12 .flip-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.85) 0%, rgba(187, 222, 251, 0.85) 100%);
    border-radius: 10px;
    z-index: 0;
}

.flip-card-b12 .flip-card-front h3 {
    position: relative;
    z-index: 1;
}

.flip-card-b12 .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

.flip-card-back h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 61, 92, 0.15));
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(360deg);
}

.benefit-card:hover .benefit-icon svg {
    filter: drop-shadow(0 6px 12px rgba(0, 61, 92, 0.25));
}

.benefit-card h3 {
    font-size: 20px;
    color: #1b3b72;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    font-size: 14px;
    color: #003D5C;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-card.active .benefit-description,
.benefit-card:hover .benefit-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
    background: #fff;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.audience-item {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
    padding: 20px 30px;
    border-left: 4px solid #5a8a5a;
    font-size: 16px;
    color: #003D5C;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.audience-item:nth-child(1) { animation-delay: 0.1s; }
.audience-item:nth-child(2) { animation-delay: 0.2s; }
.audience-item:nth-child(3) { animation-delay: 0.3s; }
.audience-item:nth-child(4) { animation-delay: 0.4s; }
.audience-item:nth-child(5) { animation-delay: 0.5s; }
.audience-item:nth-child(6) { animation-delay: 0.6s; }

.audience-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #d4e8d4 0%, #c8e6c9 100%);
    border-left-width: 8px;
}

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

/* Shop Page Hero */
.shop-page-hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
    padding: 60px 0;
    text-align: center;
}

.shop-page-hero h1 {
    font-size: 42px;
    color: #1b3b72;
    font-weight: 400;
    margin-bottom: 15px;
}

.shop-page-hero p {
    font-size: 16px;
    color: #003D5C;
}

/* Search and Filter Section */
.search-filter-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.search-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.search-bar-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e8e8e8;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #1b3b72;
}

.btn-search {
    background: #1b3b72;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-search:hover {
    background: #142b52;
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #003D5C;
    font-weight: 500;
}

.category-select {
    padding: 12px 20px;
    border: 2px solid #e8e8e8;
    font-size: 15px;
    min-width: 200px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.category-select:focus {
    outline: none;
    border-color: #1b3b72;
}

.btn-clear-filters {
    background: #95a5a6;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-clear-filters:hover {
    background: #7f8c8d;
}

.active-filters {
    margin-top: 25px;
    padding: 15px 20px;
    background: #f8fdf8;
    border-left: 4px solid #5a8a5a;
}

.active-filters p {
    font-size: 14px;
    color: #003D5C;
    margin: 0;
}

.active-filters strong {
    color: #1b3b72;
}

.btn-back-to-shop {
    display: inline-block;
    margin-top: 20px;
    background: #1b3b72;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-back-to-shop:hover {
    background: #142b52;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
}

.product-card {
    background: #fff;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f9f9f9;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.product-image img {
    width: 100%;
    height: 100%;
    min-width: 98%;
    min-height: 98%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-info {
    text-align: center;
}

.product-category {
    font-size: 11px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1b3b72;
    font-weight: 400;
    line-height: 1.4;
}

.product-description {
    font-size: 13px;
    color: #003D5C;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0 10px;
}

.product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 22px;
    font-weight: 400;
    color: #1b3b72;
}

.product-stock {
    font-size: 11px;
    font-weight: 400;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
}

.product-stock.in-stock {
    color: #5a8a5a;
    border-color: #5a8a5a;
}

.product-stock.out-of-stock {
    color: #c77;
    border-color: #c77;
}

.btn-learn-more {
    background: #1b3b72;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: #142b52;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 100px 20px;
}

.no-products p {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background: #f8fdf8;
    text-align: center;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 16px;
    color: #1b3b72;
    margin-bottom: 20px;
}

.info-title {
    font-size: 36px;
    color: #1b3b72;
    font-weight: 400;
    margin-bottom: 30px;
}

.info-text {
    font-size: 15px;
    color: #003D5C;
    line-height: 1.8;
}

/* Footer */
.shop-footer {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    color: #1b3b72;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 13px;
    color: #003D5C;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #003D5C;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #1b3b72;
}

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

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

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
}

.login-box {
    background: white;
    padding: 50px;
    border: 1px solid #e8e8e8;
    width: 100%;
    max-width: 450px;
}

.login-box h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #1b3b72;
    font-size: 28px;
    font-weight: 400;
}

/* Admin Container */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-nav {
    width: 250px;
    background: #2c3e50;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-nav h2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #34495e;
}

.admin-nav ul {
    list-style: none;
}

.admin-nav ul li {
    margin-bottom: 5px;
}

.admin-nav ul li a {
    display: block;
    padding: 12px 15px;
    color: #ecf0f1;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.admin-nav ul li a:hover,
.admin-nav ul li a.active {
    background: #34495e;
}

.admin-user {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #bdc3c7;
}

.admin-content {
    margin-left: 250px;
    padding: 30px;
    flex: 1;
    background: #ecf0f1;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #003D5C;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Messages */
.success-message,
.error-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bdc3c7;
}

.page-header h1 {
    color: #003D5C;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #003D5C;
}

/* Quick Links */
.quick-links {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quick-links h2 {
    margin-bottom: 20px;
    color: #003D5C;
}

/* Data Table */
.data-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.data-table thead {
    background: #34495e;
    color: white;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
}

.data-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

/* Form Container */
.form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .main-header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .logo-image {
        height: 60px;
    }

    .logo-title {
        font-size: 22px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .main-nav {
        gap: 20px;
        font-size: 14px;
    }

    .header-icons {
        order: -1;
        width: 100%;
        justify-content: flex-end;
    }

    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header h2, .info-title {
        font-size: 28px;
    }

    .categories-section, .products-section, .info-section {
        padding: 60px 0;
    }

    .shop-page-hero h1 {
        font-size: 36px;
    }

    .search-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar-container {
        min-width: 100%;
    }

    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-select {
        width: 100%;
    }

    .tonotil-main-title {
        font-size: 40px;
    }

    .tonotil-subtitle {
        font-size: 24px;
    }

    /* Quality Badges Section - positioning for scrollbar */
    .quality-badges-section {
        position: relative;
    }

    /* Quality Badges Grid - Horizontal Scroll (768px) */
    .quality-badges-section .quality-badges-grid,
    .quality-badges-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 30px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
        scrollbar-width: thin !important;
        scrollbar-color: #4285f4 #e3f2fd !important;
        position: relative !important;
    }

    .quality-badges-grid::-webkit-scrollbar {
        height: 8px !important;
    }

    .quality-badges-grid::-webkit-scrollbar-track {
        background: #e3f2fd !important;
        border-radius: 10px !important;
    }

    .quality-badges-grid::-webkit-scrollbar-thumb {
        background: #4285f4 !important; /* Blue theme for Tonotil */
        border-radius: 10px !important;
    }

    .quality-badges-grid::-webkit-scrollbar-thumb:hover {
        background: #3367d6 !important;
    }

    /* Add visible scroll indicator track - always visible */
    .quality-badges-grid::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 15px;
        right: 15px;
        height: 3px;
        background: rgba(66, 133, 244, 0.2);
        border-radius: 10px;
        pointer-events: none;
    }

    .quality-badge {
        flex: 0 0 200px;
        scroll-snap-align: start;
        opacity: 1 !important;
        transform: none !important;
    }

    .why-tonotil-content h2 {
        font-size: 32px;
    }

    .why-tonotil-text {
        padding: 40px 30px;
    }

    /* Flip Cards Grid - Horizontal Scroll (768px) */
    .ingredients-section .flip-cards-grid,
    .flip-cards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px !important;
        max-width: unset !important;
    }

    .flip-cards-grid::-webkit-scrollbar {
        height: 8px;
    }

    .flip-cards-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .flip-cards-grid::-webkit-scrollbar-thumb {
        background: #4285f4; /* Blue theme for Tonotil */
        border-radius: 10px;
    }

    .flip-cards-grid::-webkit-scrollbar-thumb:hover {
        background: #3367d6;
    }

    .flip-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        height: 400px;
    }

    .flip-card-front, .flip-card-back {
        padding: 30px;
        overflow-y: auto;
    }

    .flip-card-front h3 {
        font-size: 26px;
    }

    .flip-card-back {
        justify-content: center;
        text-align: center;
    }

    .flip-card-back h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .flip-card-back p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Benefits Grid - Horizontal Scroll (768px) */
    .benefits-section .benefits-grid,
    .benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px !important;
    }

    .benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb {
        background: #4285f4; /* Blue theme for Tonotil */
        border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #3367d6;
    }

    .benefit-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
        padding: 30px 20px;
    }

    .benefit-icon svg {
        width: 55px;
        height: 55px;
    }

    .benefit-title {
        font-size: 14px !important;
        margin-bottom: 8px;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }

    .benefit-subtitle {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

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

    .admin-nav {
        width: 200px;
    }

    .admin-content {
        margin-left: 200px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px !important;
    }

    .products-section .container {
        padding: 0 8px !important;
    }

    .main-header .container {
        flex-direction: column;
    }

    .logo-container a {
        gap: 10px;
    }

    .logo-image {
        height: 50px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 13px;
    }

    .main-nav > a {
        white-space: nowrap;
    }

    .header-icons {
        justify-content: center;
        gap: 30px;
    }

    .hero-section {
        height: 350px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 26px;
    }

    .section-header h2, .info-title {
        font-size: 24px;
    }

    .categories-section, .products-section, .info-section {
        padding: 40px 0;
    }

    .shop-page-hero {
        padding: 40px 0;
    }

    .shop-page-hero h1 {
        font-size: 32px;
    }

    .search-filter-section {
        padding: 20px 0 !important;
    }

    .search-filter-form {
        gap: 15px !important;
    }

    .search-bar-container {
        flex-direction: column;
        min-width: 100% !important;
        width: 100% !important;
    }

    .search-input {
        font-size: 13px !important;
        padding: 10px 15px !important;
    }

    .btn-search {
        width: 100%;
        font-size: 13px !important;
        padding: 10px !important;
    }

    .filter-container {
        width: 100% !important;
    }

    .category-select {
        font-size: 13px !important;
        padding: 10px !important;
    }

    .tonotil-hero {
        padding: 60px 0;
    }

    .tonotil-main-title {
        font-size: 32px;
    }

    .tonotil-subtitle {
        font-size: 20px;
    }

    .tonotil-description {
        font-size: 16px;
    }

    /* Quality Badges Section - positioning for scrollbar */
    .quality-badges-section {
        position: relative;
    }

    /* Quality Badges Grid - Horizontal Scroll */
    .quality-badges-section .quality-badges-grid,
    .quality-badges-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
        scrollbar-width: thin !important;
        scrollbar-color: #4285f4 #e3f2fd !important;
        position: relative !important;
    }

    .quality-badges-grid::-webkit-scrollbar {
        height: 8px !important;
    }

    .quality-badges-grid::-webkit-scrollbar-track {
        background: #e3f2fd !important;
        border-radius: 10px !important;
    }

    .quality-badges-grid::-webkit-scrollbar-thumb {
        background: #4285f4 !important; /* Blue theme for Tonotil */
        border-radius: 10px !important;
    }

    .quality-badges-grid::-webkit-scrollbar-thumb:hover {
        background: #3367d6 !important;
    }

    /* Add visible scroll indicator track - always visible */
    .quality-badges-grid::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 15px;
        right: 15px;
        height: 3px;
        background: rgba(66, 133, 244, 0.2);
        border-radius: 10px;
        pointer-events: none;
    }

    .quality-badge {
        flex: 0 0 180px;
        scroll-snap-align: start;
        opacity: 1 !important;
        transform: none !important;
    }

    .quality-icon img {
        width: 100px;
        height: 100px;
    }

    .quality-badge h4 {
        font-size: 18px;
    }

    .why-tonotil-section {
        padding: 60px 0;
    }

    .why-tonotil-content h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .why-tonotil-text {
        padding: 30px 20px;
    }

    .why-tonotil-text p {
        font-size: 15px;
    }

    /* Flip Cards Grid - Horizontal Scroll */
    .ingredients-section .flip-cards-grid,
    .flip-cards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px !important;
        max-width: unset !important;
    }

    .flip-cards-grid::-webkit-scrollbar {
        height: 8px;
    }

    .flip-cards-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .flip-cards-grid::-webkit-scrollbar-thumb {
        background: #4285f4; /* Blue theme for Tonotil */
        border-radius: 10px;
    }

    .flip-cards-grid::-webkit-scrollbar-thumb:hover {
        background: #3367d6;
    }

    .flip-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        max-width: unset;
        margin: 0;
        height: 380px;
    }

    .flip-card-front, .flip-card-back {
        padding: 28px;
        overflow-y: auto;
    }

    .flip-card-front h3 {
        font-size: 24px;
    }

    .flip-card-back {
        justify-content: center;
        text-align: center;
    }

    .flip-card-back h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .flip-card-back p {
        font-size: 14px;
        line-height: 1.6;
    }

    .benefits-section {
        padding: 30px 0;
    }

    /* Benefits Grid - Horizontal Scroll (576px) */
    .benefits-section .benefits-grid,
    .benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px !important;
    }

    .benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb {
        background: #4285f4; /* Blue theme for Tonotil */
        border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #3367d6;
    }

    .benefit-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
        padding: 25px 15px;
    }

    .benefit-icon svg {
        width: 50px;
        height: 50px;
    }

    .benefit-title {
        font-size: 13px !important;
        margin-bottom: 8px;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }

    .benefit-subtitle {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 0;
    }

    .audience-list {
        grid-template-columns: 1fr;
    }

    .categories-section {
        padding: 40px 0;
    }

    .categories-section .section-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .categories-section .section-header p {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .category-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        padding: 10px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0,61,92,0.3) transparent;
    }

    .category-grid::-webkit-scrollbar {
        height: 6px;
    }

    .category-grid::-webkit-scrollbar-track {
        background: rgba(0,61,92,0.1);
        border-radius: 10px;
    }

    .category-grid::-webkit-scrollbar-thumb {
        background: rgba(0,61,92,0.4);
        border-radius: 10px;
    }

    .category-grid::-webkit-scrollbar-thumb:hover {
        background: rgba(0,61,92,0.6);
    }

    /* Add visible scroll indicator track */
    .category-grid::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 20px;
        right: 20px;
        height: 3px;
        background: rgba(0,61,92,0.15);
        border-radius: 10px;
        pointer-events: none;
    }

    /* Add swipe indicator */
    .category-grid::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(0,61,92,0.4);
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
        z-index: 10;
    }

    .categories-section {
        position: relative;
    }

    .category-card {
        flex: 0 0 140px;
        min-width: 140px;
        max-width: 140px;
        min-height: 140px;
        padding: 20px 15px;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .category-card:first-child {
        margin-left: 5px;
    }

    .category-card:last-child {
        margin-right: 5px;
    }

    .category-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .category-card h3 {
        font-size: 12px;
        letter-spacing: 0.5px;
        line-height: 1.3;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-card {
        max-width: none;
        margin: 0;
    }

    .product-image {
        height: 200px !important;
        margin-bottom: 10px !important;
        padding: 3px !important;
    }

    .product-image img {
        width: 100% !important;
        height: 100% !important;
        min-width: 98% !important;
        min-height: 98% !important;
        object-fit: contain !important;
    }

    .product-info h3 {
        font-size: 10px !important;
        margin-bottom: 5px !important;
        line-height: 1.3 !important;
    }

    .product-category {
        font-size: 7px !important;
        margin-bottom: 5px !important;
    }

    .product-description {
        font-size: 8px !important;
        margin-bottom: 8px !important;
        padding: 0 5px !important;
        line-height: 1.4 !important;
    }

    .product-footer {
        gap: 8px !important;
        margin-bottom: 10px !important;
        flex-direction: column !important;
    }

    .product-price {
        font-size: 11px !important;
    }

    .product-stock {
        font-size: 7px !important;
    }

    .btn-learn-more {
        padding: 6px 12px !important;
        font-size: 9px !important;
    }

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

    .admin-nav {
        position: static;
        width: 100%;
        height: auto;
    }

    .admin-content {
        margin-left: 0;
    }
}

/* =============================================
   NOVALOU PAGE STYLES
   ============================================= */

/* Novalou Hero Section */
.novalou-hero {
    background-image: url('https://shopbeocompass.rs/wp-content/uploads/2025/08/baby.png');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.novalou-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 241, 212, 0.75) 0%, rgba(168, 219, 168, 0.75) 100%);
    z-index: 1;
}

.novalou-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.novalou-main-title {
    font-size: 72px;
    color: #2d5a2d;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.novalou-subtitle {
    font-size: 32px;
    color: #3d7a3d;
    margin-bottom: 25px;
    font-weight: 400;
}

.novalou-description {
    font-size: 18px;
    color: #4a6b4a;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* Novalou Quality Badges Section */
.novalou-badges-section {
    padding: 80px 0;
    background: #fff;
}

.novalou-badges-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #2d5a2d;
    margin-bottom: 60px;
    font-weight: 600;
}

.novalou-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.novalou-badge {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
}

.novalou-badge.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.novalou-badge:nth-child(1).animate {
    animation: bounceInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.novalou-badge:nth-child(2).animate {
    animation: bounceInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.novalou-badge:nth-child(3).animate {
    animation: bounceInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.novalou-badge:nth-child(4).animate {
    animation: bounceInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.novalou-badge:nth-child(5).animate {
    animation: bounceInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.novalou-badge:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 15px 40px rgba(45, 90, 45, 0.2);
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.7);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    80% {
        transform: translateY(5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.novalou-badge .badge-icon {
    margin-bottom: 25px;
}

.novalou-badge .badge-icon img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.novalou-badge h4 {
    font-size: 22px;
    color: #2d5a2d;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.novalou-badge p {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.6;
}

/* 7 Organic Oils Section */
.oils-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
}

.oils-section .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.oils-section .section-header h2 {
    font-size: 42px;
    color: #2d5a2d;
    margin-bottom: 25px;
    font-weight: 600;
}

.oils-section .section-header p {
    font-size: 17px;
    color: #003D5C;
    line-height: 1.8;
}

.oils-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.oil-circle-wrapper {
    text-align: center;
}

.oil-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: visible;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.oil-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.oil-circle:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 90, 45, 0.2);
}

.oil-circle:hover img {
    transform: scale(1.1);
}

.oil-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.oil-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #fff;
}

.oil-circle:hover .oil-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.oil-tooltip h4 {
    font-size: 18px;
    color: #2d5a2d;
    margin-bottom: 10px;
    font-weight: 600;
}

.oil-tooltip p {
    font-size: 14px;
    color: #003D5C;
    line-height: 1.6;
    margin-bottom: 8px;
}

.oil-tooltip p:last-child {
    margin-bottom: 0;
}

.oil-tooltip strong {
    color: #3d7a3d;
    font-weight: 600;
}

.oil-name {
    font-size: 18px;
    color: #2d5a2d;
    font-weight: 500;
    margin: 0;
}

/* Active Ingredients Section */
.novalou-ingredients-section {
    padding: 80px 0;
    background: #fff;
}

.novalou-ingredients-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.novalou-ingredients-section .section-header h2 {
    font-size: 42px;
    color: #2d5a2d;
    margin-bottom: 20px;
    font-weight: 600;
}

.novalou-ingredients-section .section-header p {
    font-size: 17px;
    color: #003D5C;
    line-height: 1.8;
}

.ingredients-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ingredient-item {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.15);
}

.ingredient-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ingredient-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.ingredient-item h3 {
    font-size: 18px;
    color: #2d5a2d;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.ingredient-item h3::after {
    content: '▼';
    display: block;
    font-size: 14px;
    color: #2d5a2d;
    margin-top: 8px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.ingredient-item:hover h3::after {
    transform: rotate(180deg);
    opacity: 1;
}

.ingredient-item p {
    font-size: 14px;
    color: #003D5C;
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
}

.ingredient-item:hover p {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

/* Responsive Adjustments for Novalou */
@media (max-width: 1400px) {
    .oils-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .oil-circle {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 1200px) {
    .novalou-badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .novalou-badge .badge-icon img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    /* Hide decorative images in hero section */
    .novalou-hero img[style*="position: absolute"] {
        display: none !important;
    }

    .novalou-hero {
        padding: 60px 0;
    }

    .novalou-main-title {
        font-size: 48px;
    }

    .novalou-subtitle {
        font-size: 24px;
    }

    .novalou-description {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Novalou Badges - Horizontal Scroll */
    .novalou-badges-section .novalou-badges-grid,
    .novalou-badges-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .novalou-badges-grid::-webkit-scrollbar {
        height: 8px;
    }

    .novalou-badges-grid::-webkit-scrollbar-track {
        background: rgba(45, 90, 45, 0.1);
        border-radius: 10px;
    }

    .novalou-badges-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8; /* Green theme for Novalou */
        border-radius: 10px;
    }

    .novalou-badges-grid::-webkit-scrollbar-thumb:hover {
        background: #a0c4a0;
    }

    /* Add visible scroll indicator track */
    .novalou-badges-grid::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 15px;
        right: 15px;
        height: 3px;
        background: rgba(45, 90, 45, 0.15);
        border-radius: 10px;
        pointer-events: none;
    }

    /* Add swipe indicator */
    .novalou-badges-grid::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(45, 90, 45, 0.4);
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
        z-index: 10;
    }

    .novalou-badges-section {
        position: relative;
    }

    /* Hide decorative images in badges section */
    .novalou-badges-section img[style*="position: absolute"] {
        display: none !important;
    }

    .novalou-badge {
        flex: 0 0 180px;
        scroll-snap-align: start;
        padding: 20px 10px;
        opacity: 1 !important;
        transform: none !important;
    }

    .novalou-badge .badge-icon img {
        width: 80px;
        height: 80px;
    }

    .novalou-badge h4 {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .novalou-badge p {
        font-size: 11px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        margin-top: 0;
    }

    .novalou-badge.active p {
        max-height: 100px;
        opacity: 1;
        margin-top: 8px;
    }

    /* Oils Section - Mobile Styles */
    .oils-section {
        padding: 50px 0 40px;
    }

    /* Hide decorative images on mobile */
    .oils-section img[style*="position: absolute"] {
        display: none !important;
    }

    .oils-section .section-header {
        margin: 0 auto 30px;
        padding: 0 20px;
        background: transparent;
    }

    .oils-section .section-header h2 {
        font-size: 26px;
        margin-bottom: 15px;
        color: #2d5a2d;
        font-weight: 600;
    }

    .oils-section .section-header p {
        font-size: 14px;
        line-height: 1.6;
        color: #003D5C;
        text-align: left;
    }

    /* Oils Grid - Horizontal Scroll */
    .oils-section .oils-grid,
    .oils-grid {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 20px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        scrollbar-width: thin;
        scrollbar-color: #b8d4b8 transparent;
    }

    .oils-grid::-webkit-scrollbar {
        height: 6px;
    }

    .oils-grid::-webkit-scrollbar-track {
        background: rgba(45, 90, 45, 0.1);
        border-radius: 10px;
    }

    .oils-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8; /* Green theme for Novalou */
        border-radius: 10px;
    }

    .oils-grid::-webkit-scrollbar-thumb:hover {
        background: #a0c4a0;
    }

    /* Add visible scroll indicator track */
    .oils-grid::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 20px;
        right: 20px;
        height: 3px;
        background: rgba(45, 90, 45, 0.15);
        border-radius: 10px;
        pointer-events: none;
    }

    /* Add swipe indicator */
    .oils-grid::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(45, 90, 45, 0.4);
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
        z-index: 10;
    }

    .oils-section {
        position: relative;
    }

    .oil-circle-wrapper {
        flex: 0 0 140px;
        min-width: 140px;
        scroll-snap-align: center;
        text-align: center;
    }

    .oil-circle-wrapper:first-child {
        margin-left: 5px;
    }

    .oil-circle-wrapper:last-child {
        margin-right: 5px;
    }

    .oil-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto 12px;
    }

    .oil-name {
        font-size: 12px;
        margin-top: 8px;
        line-height: 1.3;
        color: #2d5a2d;
    }

    /* Make tooltip work on mobile with click/touch */
    .oil-circle-wrapper.active .oil-tooltip {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) scale(1) !important;
        pointer-events: auto !important;
    }

    .oils-grid .oil-circle-wrapper .oil-tooltip,
    .oil-tooltip {
        width: 280px !important;
        max-width: 90vw !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
        bottom: auto !important;
        z-index: 10001 !important;
        background: #ffffff !important;
        padding: 30px 25px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
        border-radius: 12px !important;
        pointer-events: none !important;
    }

    .oil-circle-wrapper.active .oil-tooltip {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(-50%, -50%) scale(1) !important;
        pointer-events: auto !important;
    }

    .oil-tooltip::after {
        display: none !important;
    }

    /* Overlay uklonjen - ne treba tamna pozadina */

    .oils-grid .oil-tooltip h4,
    .oil-tooltip h4 {
        color: #2d5a2d !important;
        font-size: 20px !important;
        margin-bottom: 12px !important;
        font-weight: 600 !important;
        text-align: left !important;
    }

    .oils-grid .oil-tooltip p,
    .oil-tooltip p {
        color: #003D5C !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .oils-grid .oil-tooltip strong,
    .oil-tooltip strong {
        color: #2d5a2d !important;
        font-weight: 600 !important;
    }

    /* Add close button for mobile tooltips */
    .oil-tooltip-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        background: #2d5a2d;
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
        z-index: 1;
    }

    @media (min-width: 769px) {
        .oil-tooltip-close {
            display: none;
        }
    }

    /* Aktivni Sastojci Section - Mobile Styles */
    .novalou-ingredients-section {
        padding: 50px 0 40px;
    }

    /* Hide decorative images on mobile */
    .novalou-ingredients-section img[style*="position: absolute"] {
        display: none !important;
    }

    .novalou-ingredients-section .section-header {
        margin: 0 auto 30px;
        padding: 0 20px;
    }

    .novalou-ingredients-section .section-header h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .novalou-ingredients-section .section-header p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .ingredients-content {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 15px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #b8d4b8 transparent;
    }

    .ingredients-content::-webkit-scrollbar {
        height: 8px;
    }

    .ingredients-content::-webkit-scrollbar-track {
        background: rgba(45, 90, 45, 0.1);
        border-radius: 10px;
    }

    .ingredients-content::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    /* Add visible scroll indicator track */
    .ingredients-content::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 15px;
        right: 15px;
        height: 3px;
        background: rgba(45, 90, 45, 0.15);
        border-radius: 10px;
        pointer-events: none;
    }

    /* Add swipe indicator */
    .ingredients-content::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(45, 90, 45, 0.4);
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
        z-index: 10;
    }

    .novalou-ingredients-section {
        position: relative;
    }

    .ingredient-item {
        flex: 0 0 160px;
        scroll-snap-align: start;
        padding: 15px 10px;
    }

    .ingredient-icon img {
        width: 60px;
        height: 60px;
    }

    .ingredient-item h3 {
        font-size: 13px;
        margin-top: 10px;
    }

    .ingredient-item h3::after {
        font-size: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .novalou-main-title {
        font-size: 36px;
    }

    .novalou-subtitle {
        font-size: 20px;
    }

    /* Novalou Badges - Horizontal Scroll (576px) */
    .novalou-badges-section .novalou-badges-grid,
    .novalou-badges-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .novalou-badge {
        flex: 0 0 160px;
        scroll-snap-align: start;
        padding: 15px 5px;
    }

    .novalou-badge .badge-icon img {
        width: 70px;
        height: 70px;
    }

    .novalou-badge h4 {
        font-size: 12px;
        margin-top: 8px;
        margin-bottom: 3px;
    }

    /* Oils Grid - Horizontal Scroll (576px) */
    .oils-section .oils-grid,
    .oils-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .oil-circle-wrapper {
        flex: 0 0 100px;
        scroll-snap-align: start;
    }

    .oil-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .oil-circle-wrapper p {
        font-size: 10px;
        margin-top: 6px;
    }

    .ingredients-content {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 10px 20px;
        -webkit-overflow-scrolling: touch;
    }

    .ingredients-content::-webkit-scrollbar {
        height: 6px;
    }

    .ingredients-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .ingredients-content::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .ingredient-item {
        flex: 0 0 140px;
        scroll-snap-align: start;
        padding: 12px 8px;
    }

    .ingredient-icon img {
        width: 55px;
        height: 55px;
    }

    .ingredient-item h3 {
        font-size: 11px;
        margin-top: 8px;
    }

    .ingredient-item h3::after {
        font-size: 9px;
        margin-top: 4px;
    }
}

/* =============================================
   NEW FOOTER DESIGN
   ============================================= */

.shop-footer-new {
    background: #e1f2e1;
    color: #2e7d32;
    padding: 60px 0 0;
    position: relative;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23e1f2e1" d="M0,50 C360,100 720,0 1440,50 L1440,100 L0,100 Z"></path></svg>') no-repeat;
    background-size: cover;
}

.footer-content-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

.footer-col-new h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1b5e20;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-new a {
    display: block;
    color: #2e7d32;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-col-new a:hover {
    color: #1b5e20;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #2e7d32;
    font-size: 14px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #1b5e20;
}

.contact-item a {
    display: inline;
    margin: 0;
    color: #2e7d32;
}

.contact-item a:hover {
    color: #1b5e20;
    padding-left: 0;
}

.contact-item span {
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #d4e7d7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.social-link:hover {
    background: #c4d7c7;
    transform: translateY(-3px);
}

.social-link svg {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.social-link:hover svg circle {
    stroke: #b8934f;
}

.social-link:hover svg path,
.social-link:hover svg rect {
    stroke: #b8934f;
    fill: #b8934f;
}

/* Footer collapsible sections */
.footer-toggle {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 25px;
}

.toggle-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 12px;
    display: none; /* Hide by default on desktop */
}

.footer-collapsible.active .toggle-icon {
    transform: translateY(-50%) rotate(180deg);
}

.footer-collapse-content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: none; /* Always visible on desktop */
    opacity: 1;
}

.footer-toggle {
    cursor: default; /* No pointer on desktop */
}

/* Desktop: no toggle functionality */
@media (min-width: 769px) {
    .footer-toggle {
        cursor: default !important;
        pointer-events: none;
    }

    .toggle-icon {
        display: none !important;
    }

    .footer-collapse-content {
        max-height: none !important;
        opacity: 1 !important;
    }
}

.footer-bottom-new {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom-new p {
    color: #2e7d32;
    font-size: 13px;
    margin: 0;
}

/* =============================================
   CONTENT PAGES STYLING
   ============================================= */

.page-container {
    padding: 60px 0;
    background: #f9f9f9;
    min-height: 60vh;
}

.content-page {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 42px;
    color: #1b3b72;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #1b3b72;
}

.content-page h2 {
    font-size: 28px;
    color: #1b3b72;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-size: 20px;
    color: #2c5282;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 15px;
}

.content-page ul, .content-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #003D5C;
}

.content-page strong {
    color: #1b3b72;
    font-weight: 600;
}

.content-page a {
    color: #1b3b72;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-page a:hover {
    border-bottom-color: #1b3b72;
}

.policy-section {
    margin-bottom: 40px;
}

.last-updated {
    color: #999;
    font-size: 14px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* FAQ Styling */
.faq-section {
    margin-bottom: 50px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1b3b72;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-item h3 {
    color: #1b3b72;
    margin-top: 0;
    font-size: 18px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Hide footer collapse content by default on mobile */
    .footer-collapse-content {
        max-height: 0;
        opacity: 0;
    }

    .footer-collapsible.active .footer-collapse-content {
        max-height: 500px;
        opacity: 1;
        margin-top: 15px;
    }

    .footer-toggle {
        display: block;
        cursor: pointer !important;
        pointer-events: all !important;
    }

    .toggle-icon {
        display: inline-block !important;
    }

    /* Show social links always */
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .shop-footer-new {
        padding: 30px 0 20px;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col-new {
        padding: 15px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
    }

    .footer-col-new h4 {
        margin-bottom: 0;
        font-size: 16px;
    }

    .footer-collapsible h4 {
        margin-bottom: 0 !important;
    }

    .footer-bottom-new {
        padding: 20px 0;
        margin-top: 20px;
    }

    .footer-bottom-new p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .footer-content-new {
        grid-template-columns: 1fr;
    }

    .content-page {
        padding: 30px 20px;
    }

    .content-page h1 {
        font-size: 32px;
    }

    .content-page h2 {
        font-size: 24px;
    }
}

/* ============================================
   PANACEO PAGE STYLES
   ============================================ */

/* Panaceo Hero Section */
.panaceo-hero {
    background-image: url('https://shopbeocompass.rs/wp-content/uploads/2025/07/stomak.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.panaceo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(225, 242, 225, 0.85);
    z-index: 1;
}

.panaceo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.panaceo-main-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: #2d5a2d;
}

.panaceo-subtitle {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
    color: #3d7a3d;
}

.panaceo-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #2d5a2d;
}

/* Panaceo Benefits Section */
.panaceo-benefits-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.panaceo-benefits-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.panaceo-benefits-section h2 {
    font-size: 42px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.panaceo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.panaceo-benefit-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.panaceo-benefit-card[data-animation="left"] {
    transform: translateX(-30px);
}

.panaceo-benefit-card[data-animation="right"] {
    transform: translateX(30px);
}

.panaceo-benefit-card.animate {
    opacity: 1;
    transform: translate(0, 0);
}

.panaceo-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.panaceo-benefit-card .benefit-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.panaceo-benefit-card h3 {
    font-size: 24px;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 600;
}

.panaceo-benefit-card p {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.6;
}

/* Panaceo Zeolite Section */
.panaceo-zeolite-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff 0%, #e8f5e9 100%);
}

.zeolite-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.zeolite-text h2 {
    font-size: 42px;
    color: #2e7d32;
    margin-bottom: 30px;
}

.zeolite-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 20px;
}

.zeolite-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Why Panaceo Section */
.why-panaceo-section {
    padding: 80px 0;
    background: white;
}

.why-panaceo-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-panaceo-section h2 {
    font-size: 42px;
    color: #2e7d32;
}

.why-panaceo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.panaceo-feature {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.panaceo-feature:hover {
    background: #e8f5e9;
    transform: translateX(10px);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: #4caf50;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.feature-text h3 {
    font-size: 26px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.feature-text p {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.7;
}

/* Panaceo Contact Section */
.panaceo-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
}

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

.panaceo-contact-section h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
}

.panaceo-contact-section .section-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-info-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.contact-info-item p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Styles for Panaceo */
@media (max-width: 1024px) {
    .panaceo-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zeolite-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zeolite-image svg {
        width: 250px;
        height: 250px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .panaceo-hero {
        padding: 80px 0;
    }

    .panaceo-main-title {
        font-size: 48px;
    }

    .panaceo-subtitle {
        font-size: 28px;
    }

    .panaceo-description {
        font-size: 16px;
    }

    .panaceo-benefits-section h2,
    .why-panaceo-section h2,
    .panaceo-contact-section h2 {
        font-size: 32px;
    }

    .zeolite-text h2 {
        font-size: 32px;
    }

    .panaceo-benefit-card {
        padding: 30px;
    }

    /* Panaceo Benefits Grid - Horizontal Scroll */
    .panaceo-benefits-section .panaceo-benefits-grid,
    .panaceo-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .panaceo-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .panaceo-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .panaceo-benefits-grid::-webkit-scrollbar-thumb {
        background: #81c784; /* Green theme for Panaceo */
        border-radius: 10px;
    }

    .panaceo-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #66bb6a;
    }

    .panaceo-benefit-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Why Panaceo Content - Horizontal Scroll */
    .why-panaceo-section .why-panaceo-content,
    .why-panaceo-content {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: unset !important;
    }

    .why-panaceo-content::-webkit-scrollbar {
        height: 8px;
    }

    .why-panaceo-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .why-panaceo-content::-webkit-scrollbar-thumb {
        background: #81c784; /* Green theme for Panaceo */
        border-radius: 10px;
    }

    .why-panaceo-content::-webkit-scrollbar-thumb:hover {
        background: #66bb6a;
    }

    .panaceo-feature {
        flex: 0 0 280px;
        scroll-snap-align: start;
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
    }

    .feature-number {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .panaceo-main-title {
        font-size: 36px;
    }

    .panaceo-subtitle {
        font-size: 24px;
    }

    /* Panaceo Benefits Grid - Horizontal Scroll (576px) */
    .panaceo-benefits-section .panaceo-benefits-grid,
    .panaceo-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .panaceo-benefit-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
        padding: 25px;
    }

    /* Why Panaceo Content - Horizontal Scroll (576px) */
    .why-panaceo-section .why-panaceo-content,
    .why-panaceo-content {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: unset !important;
    }

    .panaceo-feature {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

/* Cart Hero Section */
.cart-hero {
    background: linear-gradient(135deg, #1b3b72 0%, #2d5a8f 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.cart-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cart-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Cart Section */
.cart-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-cart svg {
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-size: 28px;
    color: #003D5C;
    margin-bottom: 15px;
}

.empty-cart p {
    font-size: 16px;
    color: #003D5C;
    margin-bottom: 30px;
}

.btn-shop {
    display: inline-block;
    padding: 15px 40px;
    background: #1b3b72;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: #2d5a8f;
    transform: translateY(-2px);
}

/* Cart Items */
.cart-items {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 120px 40px;
    gap: 20px;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.3s ease;
}

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

.cart-item:hover {
    background: #f8f9fa;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 18px;
    color: #003D5C;
    margin-bottom: 8px;
    font-weight: 600;
}

.cart-item-price {
    font-size: 16px;
    color: #003D5C;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 5px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    color: #003D5C;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.qty-btn:hover {
    background: #1b3b72;
    color: white;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total p {
    font-size: 20px;
    font-weight: 700;
    color: #1b3b72;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    padding: 5px;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-continue,
.btn-clear {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 15px;
}

.btn-continue {
    background: #f5f5f5;
    color: #003D5C;
}

.btn-continue:hover {
    background: #e8e8e8;
}

.btn-clear {
    background: #fff;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-clear:hover {
    background: #e74c3c;
    color: white;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 24px;
    color: #003D5C;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #003D5C;
}

.summary-row .highlight {
    color: #4caf50;
    font-weight: 600;
}

.coupon-section {
    margin: 25px 0;
    display: flex;
    gap: 10px;
}

.coupon-section input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.coupon-section button {
    padding: 12px 20px;
    background: #1b3b72;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coupon-section button:hover {
    background: #2d5a8f;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e8e8e8;
    font-size: 20px;
    font-weight: 700;
    color: #003D5C;
}

.total-price {
    color: #1b3b72;
    font-size: 24px;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Trust Badges */
.trust-badges {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #003D5C;
}

.trust-item:last-child {
    margin-bottom: 0;
}

/* Recommended Products */
.recommended-products {
    padding: 60px 0;
    background: white;
}

.recommended-products h2 {
    font-size: 36px;
    color: #003D5C;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
    object-position: center;
}

.product-card h3 {
    font-size: 18px;
    color: #003D5C;
    margin-bottom: 12px;
}

.product-card .price {
    font-size: 22px;
    color: #1b3b72;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-add-to-cart {
    width: 100%;
    padding: 12px;
    background: #1b3b72;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #2d5a8f;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    display: none;
}

.icon-link {
    position: relative;
}

.icon-link.active svg {
    stroke: #1b3b72;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 600;
}

.notification-success {
    border-left: 4px solid #4caf50;
}

.notification-success svg {
    stroke: #4caf50;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-error svg {
    stroke: #e74c3c;
}

/* Responsive */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

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

    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
        padding: 15px;
    }

    .cart-item-image {
        width: 100px;
        height: 120px;
        grid-row: 1 / 3;
    }

    .cart-item-details h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .cart-item-price {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cart-item-quantity {
        grid-column: 2;
        margin-bottom: 10px;
    }

    .cart-item-total {
        grid-column: 2;
    }

    .cart-item-remove {
        grid-column: 2;
        justify-self: end;
    }

    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .notification {
        right: 15px;
        left: 15px;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

/* Checkout Progress */
.checkout-progress {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.progress-step.completed .step-number {
    background: #4caf50;
    color: white;
}

.progress-step.active .step-number {
    background: #1b3b72;
    color: white;
}

.step-label {
    font-size: 14px;
    color: #003D5C;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #1b3b72;
    font-weight: 700;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: #e8e8e8;
    margin: 0 20px;
    position: relative;
    top: -20px;
}

.progress-line.completed {
    background: #4caf50;
}

/* Checkout Section */
.checkout-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Checkout Form */
.checkout-form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.checkout-section-box {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

.checkout-section-box:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-section-box h2 {
    font-size: 24px;
    color: #003D5C;
    margin-bottom: 10px;
}

.section-description {
    font-size: 14px;
    color: #003D5C;
    margin-bottom: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #003D5C;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1b3b72;
    box-shadow: 0 0 0 3px rgba(27, 59, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Checkbox Group */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #003D5C;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Shipping Options */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: #1b3b72;
    background: #f8f9fa;
}

.shipping-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.shipping-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.shipping-name {
    display: flex;
    flex-direction: column;
}

.shipping-title {
    font-weight: 600;
    color: #003D5C;
    font-size: 16px;
}

.shipping-price {
    font-weight: 700;
    color: #4caf50;
    font-size: 16px;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #1b3b72;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked + .payment-info {
    opacity: 1;
}

.payment-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

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

.payment-icon svg {
    stroke: #1b3b72;
}

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

.payment-title {
    font-weight: 600;
    color: #003D5C;
    font-size: 16px;
}

.payment-description {
    font-size: 14px;
    color: #003D5C;
}

/* Card Payment Form */
.card-payment-form {
    margin-top: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
}

.card-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.card-form-header h3 {
    font-size: 18px;
    color: #003D5C;
    margin: 0;
}

.card-logos {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-logos img {
    height: 20px;
    opacity: 0.7;
}

.cvv-info {
    display: inline-flex;
    align-items: center;
    cursor: help;
    margin-left: 5px;
    color: #003D5C;
}

.cvv-info:hover svg {
    stroke: #1b3b72;
}

.card-security-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f0f9f0;
    border-radius: 8px;
    font-size: 14px;
    color: #4caf50;
}

.card-security-notice svg {
    flex-shrink: 0;
}

/* Payment Notice */
.payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff5f5;
    border: 1px solid #ffe0e0;
    border-radius: 10px;
}

.payment-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-notice p {
    color: #e74c3c;
    font-size: 15px;
    margin: 0;
}

/* Checkout Actions */
.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.btn-back {
    color: #003D5C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #1b3b72;
}

.btn-submit-order {
    padding: 15px 40px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-order:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Checkout Terms */
.checkout-terms {
    margin-top: 25px;
    text-align: center;
}

.checkout-terms p {
    font-size: 13px;
    color: #003D5C;
}

.checkout-terms a {
    color: #1b3b72;
    text-decoration: none;
}

.checkout-terms a:hover {
    text-decoration: underline;
}

/* Checkout Summary */
.checkout-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    font-size: 24px;
    color: #003D5C;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

/* Checkout Items */
.checkout-items {
    margin-bottom: 25px;
}

.checkout-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.checkout-item:last-child {
    margin-bottom: 0;
}

.checkout-item-image {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1b3b72;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.checkout-item-details h4 {
    font-size: 15px;
    color: #003D5C;
    margin-bottom: 5px;
}

.checkout-item-price {
    font-size: 14px;
    color: #003D5C;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #003D5C;
}

.summary-row .highlight {
    color: #4caf50;
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e8e8e8;
    font-size: 20px;
    font-weight: 700;
    color: #003D5C;
}

.summary-total .total-price {
    color: #1b3b72;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }

    .progress-line {
        width: 60px;
        margin: 0 10px;
    }

    .step-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .checkout-form-container {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .btn-submit-order {
        width: 100%;
        justify-content: center;
    }

    .progress-steps {
        padding: 0 20px;
    }

    .progress-line {
        width: 40px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .payment-option {
        padding: 15px;
    }

    .payment-icon {
        width: 35px;
        height: 35px;
    }

    .payment-title {
        font-size: 15px;
    }

    .payment-description {
        font-size: 13px;
    }

    .card-payment-form {
        padding: 20px;
    }

    .card-form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .card-logos {
        flex-wrap: wrap;
    }
}

/* =========================
   Product Page Styles
   ========================= */

/* Breadcrumb */
.breadcrumb-container {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #003D5C;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #1b3b72;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #4caf50;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #003D5C;
    font-weight: 500;
}

/* Product Section */
.product-section {
    padding: 50px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    object-fit: contain;
}

.thumbnail:hover {
    border-color: #1b3b72;
}

.thumbnail.active {
    border-color: #4caf50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #003D5C;
    line-height: 1.3;
    margin: 0;
}

.product-price-section {
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: #1b3b72;
    margin-bottom: 5px;
}

.product-tax-info {
    font-size: 14px;
    color: #003D5C;
}

.product-description-short {
    font-size: 16px;
    line-height: 1.6;
    color: #003D5C;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-selector label {
    font-size: 14px;
    font-weight: 600;
    color: #003D5C;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #f8f8f8;
    color: #003D5C;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #1b3b72;
    color: white;
}

.qty-input {
    width: 60px;
    height: 45px;
    border: none;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #003D5C;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart {
    background: #4caf50;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.btn-add-to-cart:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-add-to-cart svg {
    width: 20px;
    height: 20px;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #003D5C;
}

.meta-item svg {
    color: #4caf50;
    flex-shrink: 0;
}

/* Product Tabs */
.product-tabs-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
}

.product-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    background: none;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #003D5C;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: #1b3b72;
}

.tab-btn.active {
    color: #1b3b72;
    border-bottom-color: #4caf50;
}

.tab-content-container {
    min-height: 300px;
}

.tab-content {
    display: none;
    opacity: 0;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.tab-content h3 {
    font-size: 24px;
    color: #003D5C;
    margin-bottom: 20px;
}

.tab-content h4 {
    font-size: 18px;
    color: #003D5C;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tab-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 15px;
}

.tab-content ul,
.tab-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.tab-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 10px;
}

/* No Reviews */
.no-reviews {
    text-align: center;
    padding: 60px 20px;
}

.no-reviews svg {
    margin-bottom: 20px;
}

.no-reviews p {
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}

.review-cta {
    font-weight: 600;
    color: #1b3b72;
}

/* Related Products */
.related-products-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e8e8e8;
}

.related-products-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003D5C;
    margin-bottom: 40px;
}

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

.related-product-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.related-product-image {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.related-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-product-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #003D5C;
    line-height: 1.4;
    margin: 0;
    min-height: 40px;
}

.related-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #1b3b72;
}

.btn-related-add-cart {
    background: white;
    color: #4caf50;
    border: 2px solid #4caf50;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-related-add-cart:hover {
    background: #4caf50;
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-main-image {
        min-height: 400px;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 30px 0;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 28px;
    }

    .product-main-image {
        min-height: 300px;
        padding: 20px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
    }

    .product-tabs {
        gap: 5px;
    }

    .tab-btn {
        padding: 15px 20px;
        font-size: 14px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-products-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* =========================
   Account Page Styles
   ========================= */

.account-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.account-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.account-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.account-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #003D5C;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-form label {
    font-size: 14px;
    font-weight: 600;
    color: #003D5C;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s;
}

.account-form input[type="text"]:focus,
.account-form input[type="email"]:focus,
.account-form input[type="password"]:focus {
    outline: none;
    border-color: #1b3b72;
    box-shadow: 0 0 0 3px rgba(27, 59, 114, 0.1);
}

.btn-account-submit {
    background: #1b3b72;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-account-submit:hover {
    background: #142d56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 59, 114, 0.3);
}

.account-form .checkbox-group {
    flex-direction: row;
    align-items: center;
    margin-top: 5px;
}

.account-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.account-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.forgot-password {
    color: #1b3b72;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #4caf50;
    text-decoration: underline;
}

.register-info {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
    margin-top: 5px;
}

.register-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #003D5C;
    margin-bottom: 12px;
}

.register-info p:last-child {
    margin-bottom: 0;
}

.register-info a {
    color: #1b3b72;
    text-decoration: underline;
}

.register-info a:hover {
    color: #4caf50;
}

/* Responsive */
@media (max-width: 768px) {
    .account-section {
        padding: 40px 0;
    }

    .account-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .account-box h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

/* =========================
   Biolin P Page Styles
   ========================= */

/* Hero Section */
.biolin-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.biolin-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.biolin-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.biolin-main-title {
    font-size: 56px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.biolin-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 20px;
}

.biolin-description {
    font-size: 18px;
    line-height: 1.8;
    color: #003D5C;
    max-width: 700px;
    margin: 0 auto;
}

/* Prebiotics Intro Section */
.biolin-intro-section {
    padding: 80px 0;
    background: white;
}

.biolin-intro-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.biolin-intro-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.biolin-intro-icon img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(76, 175, 80, 0.2));
}

.biolin-intro-content:hover .biolin-intro-icon {
    transform: scale(1.05) rotate(2deg);
}

.biolin-intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
}

.biolin-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #003D5C;
}

/* Microbiome Section */
.biolin-microbiome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}

.biolin-microbiome-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 40px;
}

.microbiome-content {
    max-width: 900px;
    margin: 0 auto;
}

.microbiome-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 30px;
    text-align: left;
}

.probiotics-info,
.prebiotics-role {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.probiotics-info:hover,
.prebiotics-role:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.2);
}

.probiotics-info h3,
.prebiotics-role h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
}

.probiotics-info p,
.prebiotics-role p {
    font-size: 17px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 20px;
}

.prebiotics-role p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    margin-top: 30px;
}

.highlight-text strong {
    color: #1b5e20;
}

/* Info Section */
.biolin-info-section {
    padding: 80px 0;
    background: white;
}

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

.biolin-info-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
}

.biolin-info-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 30px;
}

.biolin-composition {
    background: #f1f8e9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.biolin-composition h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 15px;
}

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

.biolin-composition li {
    font-size: 16px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.biolin-composition li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 20px;
}

.biolin-power {
    margin-top: 30px;
}

.biolin-power p {
    font-size: 17px;
    line-height: 1.8;
    color: #003D5C;
    margin-bottom: 20px;
}

.biolin-power p strong {
    color: #1b5e20;
    font-weight: 700;
}

.biolin-info-image {
    text-align: center;
}

.biolin-info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.biolin-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}

.biolin-benefits-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 60px;
}

.biolin-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.biolin-benefit-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.biolin-benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(27, 94, 32, 0.25);
}

.biolin-benefit-card .benefit-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
}

.biolin-benefit-card .benefit-icon img {
    max-width: 100px;
    height: auto;
    transition: transform 0.4s ease;
}

.biolin-benefit-card:hover .benefit-icon img {
    transform: scale(1.1);
}

.biolin-benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.biolin-benefit-card:hover h3 {
    color: #2e7d32;
}

.biolin-benefit-card .benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #003D5C;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.biolin-benefit-card:hover .benefit-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

/* Applications Section */
.biolin-applications-section {
    padding: 80px 0;
    background: white;
}

.biolin-applications-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 60px;
}

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

.application-card {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.application-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(27, 94, 32, 0.3);
}

.application-card .application-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
}

.application-card .application-icon svg {
    transition: transform 0.4s ease;
}

.application-card:hover .application-icon svg {
    transform: scale(1.15);
}

.application-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.application-card:hover h3 {
    color: #2e7d32;
}

.application-card .application-description {
    font-size: 16px;
    line-height: 1.8;
    color: #003D5C;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.application-card:hover .application-description {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
}

.biolin-clinical {
    text-align: center;
    padding: 40px;
}

.clinical-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #4caf50;
}

.clinical-badge svg {
    flex-shrink: 0;
}

.clinical-badge span {
    font-size: 18px;
    font-weight: 600;
    color: #1b5e20;
}

/* CTA Section */
.biolin-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    position: relative;
    overflow: hidden;
}

.biolin-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.biolin-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.biolin-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
}

.biolin-cta-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #2e7d32;
    margin-bottom: 40px;
}

.btn-biolin-cta {
    display: inline-block;
    background: #1b5e20;
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}

.btn-biolin-cta:hover {
    background: #2e7d32;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(27, 94, 32, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .biolin-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .biolin-intro-icon {
        justify-content: center;
    }

    .biolin-intro-icon img {
        max-width: 250px;
    }

    .biolin-intro-text {
        text-align: center;
    }

    .biolin-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Biolin Benefits Grid - Horizontal Scroll (1024px) */
    .biolin-benefits-section .biolin-benefits-grid,
    .biolin-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .biolin-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .biolin-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .biolin-benefits-grid::-webkit-scrollbar-thumb {
        background: #66bb6a; /* Green theme for Biolin */
        border-radius: 10px;
    }

    .biolin-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .biolin-benefit-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .biolin-applications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .biolin-hero {
        padding: 60px 0;
    }

    .biolin-main-title {
        font-size: 38px;
    }

    .biolin-subtitle {
        font-size: 24px;
    }

    .biolin-description {
        font-size: 16px;
    }

    .biolin-intro-section {
        padding: 50px 0;
    }

    .biolin-intro-text h2 {
        font-size: 26px;
    }

    .biolin-intro-text p {
        font-size: 16px;
    }

    .biolin-microbiome-section {
        padding: 50px 0;
    }

    .biolin-microbiome-section .section-title {
        font-size: 32px;
    }

    .microbiome-content > p {
        font-size: 16px;
    }

    .probiotics-info,
    .prebiotics-role {
        padding: 30px 20px;
    }

    .probiotics-info h3,
    .prebiotics-role h3 {
        font-size: 22px;
    }

    .probiotics-info p,
    .prebiotics-role p {
        font-size: 16px;
    }

    .biolin-info-section {
        padding: 50px 0;
    }

    .biolin-info-text h2 {
        font-size: 28px;
    }

    .biolin-benefits-section {
        padding: 50px 0;
    }

    .biolin-benefits-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* Biolin Benefits Grid - Horizontal Scroll (768px) */
    .biolin-benefits-section .biolin-benefits-grid,
    .biolin-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .biolin-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .biolin-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .biolin-benefits-grid::-webkit-scrollbar-thumb {
        background: #66bb6a; /* Green theme for Biolin */
        border-radius: 10px;
    }

    .biolin-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .biolin-benefit-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
        padding: 30px;
    }

    .biolin-benefit-card .benefit-icon img {
        max-width: 80px;
    }

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

    .biolin-applications-section {
        padding: 50px 0;
    }

    .biolin-applications-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .application-card {
        padding: 40px 30px;
    }

    .application-card h3 {
        font-size: 20px;
    }

    .application-card .application-description {
        font-size: 15px;
    }

    .clinical-badge {
        flex-direction: column;
        padding: 20px 30px;
    }

    .clinical-badge span {
        font-size: 16px;
    }

    .biolin-cta-section {
        padding: 60px 0;
    }

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

    .biolin-cta-content p {
        font-size: 18px;
    }
}

/* ============================================
   INCA OMEGA OIL PAGE STYLES
   ============================================ */

/* Inca Hero Section */
.inca-hero {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffcc80 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.inca-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ff9800" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.inca-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.inca-main-title {
    font-size: 56px;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inca-subtitle {
    font-size: 28px;
    color: #f57c00;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.inca-description {
    font-size: 18px;
    color: #5d4037;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Inca Badges Section */
.inca-badges-section {
    padding: 80px 0;
    background: #fff;
}

.inca-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.inca-badge-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.inca-badge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 81, 0, 0.2);
    border-color: #ff9800;
}

.inca-badge-card .badge-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.inca-badge-card:hover .badge-icon {
    transform: scale(1.15) rotate(5deg);
}

.inca-badge-card .badge-icon img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.inca-badge-card h3 {
    font-size: 22px;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 600;
}

.inca-badge-card p {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 0;
}

.inca-badge-card:hover p {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

/* Inca Intro Section */
.inca-intro-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff 0%, #fff8f0 100%);
}

.inca-intro-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
}

.inca-intro-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.inca-intro-content:hover .inca-intro-icon {
    transform: scale(1.05) rotate(-2deg);
}

.inca-intro-icon img {
    max-width: 100%;
    height: auto;
}

.inca-intro-text h2 {
    font-size: 36px;
    color: #e65100;
    margin-bottom: 25px;
    font-weight: 600;
}

.inca-intro-text p {
    font-size: 18px;
    color: #003D5C;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

/* Inca Composition Section */
.inca-composition-section {
    padding: 100px 0;
    background: #fff;
}

.inca-composition-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #e65100;
    margin-bottom: 60px;
    font-weight: 600;
}

.composition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.composition-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 20px;
}

.composition-image img {
    max-width: 120%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
    cursor: pointer;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.composition-image img:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 15px 40px rgba(230, 81, 0, 0.3));
}

.composition-details {
    padding: 20px;
}

.composition-stat {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    color: #fff8f0;
    font-weight: 500;
}

.omega-breakdown {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.omega-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.omega-bar {
    width: 100%;
    height: 50px;
    background: #f5f5f5;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.omega-fill {
    height: 100%;
    transition: width 0.8s ease;
    border-radius: 20px;
}

.omega-3 {
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
}

.omega-6 {
    background: linear-gradient(90deg, #2196f3 0%, #42a5f5 100%);
}

.omega-9 {
    background: linear-gradient(90deg, #ff9800 0%, #ffa726 100%);
}

.omega-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.omega-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #003D5C;
}

.omega-percent {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e65100;
}

/* Inca Benefits Section */
.inca-benefits-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff 0%, #fff8f0 100%);
}

.inca-benefits-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #e65100;
    margin-bottom: 60px;
    font-weight: 600;
}

.inca-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.inca-benefit-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.inca-benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 40px rgba(230, 81, 0, 0.2);
}

.inca-benefit-card .benefit-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.inca-benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.inca-benefit-card h3 {
    font-size: 22px;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.inca-benefit-card .benefit-description {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 0;
}

.inca-benefit-card:hover .benefit-description {
    max-height: 300px;
    opacity: 1;
    margin-top: 15px;
}

/* Inca Antioxidant Section */
.inca-antioxidant-section {
    padding: 100px 0;
    background: #fff;
}

.antioxidant-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.antioxidant-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe0b2 100%);
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.antioxidant-image:hover {
    transform: scale(1.05);
}

.antioxidant-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    mix-blend-mode: multiply;
}

.antioxidant-text h2 {
    font-size: 38px;
    color: #e65100;
    margin-bottom: 25px;
    font-weight: 600;
}

.antioxidant-text > p {
    font-size: 18px;
    color: #003D5C;
    line-height: 1.8;
    margin-bottom: 35px;
}

.antioxidant-benefits {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #ff9800;
}

.antioxidant-benefits h3 {
    font-size: 24px;
    color: #e65100;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.antioxidant-benefits li {
    font-size: 17px;
    color: #003D5C;
    line-height: 1.8;
    padding: 12px 0 12px 35px;
    position: relative;
}

.antioxidant-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 20px;
}

.clinical-evidence {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #ffe0b2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.clinical-evidence h3 {
    font-size: 22px;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clinical-evidence h3::before {
    content: '🔬';
    font-size: 24px;
}

.clinical-evidence p {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.8;
    margin: 0;
}

/* Inca Sourcing Section */
.inca-sourcing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe0b2 50%, #fff3e0 100%);
}

.sourcing-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.sourcing-content h2 {
    font-size: 42px;
    color: #e65100;
    margin-bottom: 30px;
    font-weight: 600;
}

.sourcing-intro {
    font-size: 20px;
    color: #003D5C;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sourcing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sourcing-feature {
    background: white;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sourcing-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.2);
}

.sourcing-feature .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.sourcing-feature:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.sourcing-feature h3 {
    font-size: 22px;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 600;
}

.sourcing-feature p {
    font-size: 16px;
    color: #003D5C;
    line-height: 1.7;
    margin: 0;
}

/* Inca CTA Section */
.inca-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.inca-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.inca-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.inca-cta-content h2 {
    font-size: 42px;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.inca-cta-content p {
    font-size: 20px;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-inca-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #1b5e20;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.3);
}

.btn-inca-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 94, 32, 0.4);
    background: #2e7d32;
}

/* Responsive Styles for Inca Omega */
@media (max-width: 1024px) {
    .inca-intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .inca-intro-icon {
        max-width: 300px;
        margin: 0 auto;
    }

    .composition-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .antioxidant-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Inca Badges Grid - Horizontal Scroll (1024px) */
    .inca-badges-section .inca-badges-grid,
    .inca-badges-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
    }

    .inca-badges-grid::-webkit-scrollbar {
        height: 8px;
    }

    .inca-badges-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .inca-badges-grid::-webkit-scrollbar-thumb {
        background: #ff6f00; /* Orange theme for Inca Omega */
        border-radius: 10px;
    }

    .inca-badges-grid::-webkit-scrollbar-thumb:hover {
        background: #e65100;
    }

    .inca-badge-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Sourcing Features - Horizontal Scroll (1024px) */
    .inca-sourcing-section .sourcing-features,
    .sourcing-features {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .sourcing-features::-webkit-scrollbar {
        height: 8px;
    }

    .sourcing-features::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .sourcing-features::-webkit-scrollbar-thumb {
        background: #ff6f00; /* Orange theme for Inca Omega */
        border-radius: 10px;
    }

    .sourcing-features::-webkit-scrollbar-thumb:hover {
        background: #e65100;
    }

    .sourcing-feature {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .inca-main-title {
        font-size: 40px;
    }

    .inca-subtitle {
        font-size: 22px;
    }

    .inca-description {
        font-size: 16px;
    }

    .inca-hero {
        padding: 80px 0 60px;
    }

    .inca-badges-section,
    .inca-intro-section,
    .inca-composition-section,
    .inca-benefits-section,
    .inca-antioxidant-section,
    .inca-sourcing-section {
        padding: 60px 0;
    }

    .inca-intro-text h2,
    .antioxidant-text h2,
    .sourcing-content h2 {
        font-size: 28px;
    }

    .inca-composition-section .section-title,
    .inca-benefits-section .section-title {
        font-size: 32px;
    }

    /* Inca Benefits Grid - Horizontal Scroll (768px) */
    .inca-benefits-section .inca-benefits-grid,
    .inca-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
    }

    .inca-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .inca-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .inca-benefits-grid::-webkit-scrollbar-thumb {
        background: #ff6f00; /* Orange theme for Inca Omega */
        border-radius: 10px;
    }

    .inca-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #e65100;
    }

    .inca-benefit-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 16px;
    }

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

    .inca-cta-content p {
        font-size: 18px;
    }
}

/* ============================================
   PHYTO-CERAMIDYL HORIZONTAL SCROLL (MOBILE)
   ============================================ */

/* Phyto Badges Grid and Clinical Boxes - Horizontal Scroll (1024px) */
@media (max-width: 1024px) {
    /* Phyto Badges Grid - Horizontal Scroll */
    .phyto-badges-section .phyto-badges-grid,
    .phyto-badges-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .phyto-badges-grid::-webkit-scrollbar {
        height: 8px;
    }

    .phyto-badges-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .phyto-badges-grid::-webkit-scrollbar-thumb {
        background: #66bb6a;
        border-radius: 10px;
    }

    .phyto-badges-grid::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .phyto-badge-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

/* Phyto Benefits Grid and Components Icons - Horizontal Scroll (768px) */
@media (max-width: 768px) {
    /* Phyto Benefits Grid - Horizontal Scroll */
    .phyto-benefits-section .phyto-benefits-grid,
    .phyto-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .phyto-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .phyto-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .phyto-benefits-grid::-webkit-scrollbar-thumb {
        background: #66bb6a;
        border-radius: 10px;
    }

    .phyto-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .phyto-benefit-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    /* Components Icons Grid - Horizontal Scroll */
    .phyto-components-icons-section .components-icons-grid,
    .components-icons-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
    }

    .components-icons-grid::-webkit-scrollbar {
        height: 8px;
    }

    .components-icons-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .components-icons-grid::-webkit-scrollbar-thumb {
        background: #66bb6a;
        border-radius: 10px;
    }

    .components-icons-grid::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .component-icon-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Clinical Section Mobile Adjustments */
    .clinical-section-title {
        font-size: 1.4rem;
    }

    .component-item {
        padding: 20px;
        flex-direction: row;
    }

    .component-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .component-text strong {
        font-size: 1.1rem;
    }

    .component-text p {
        font-size: 0.95rem;
    }

    .result-box {
        padding: 30px 25px;
    }

    .result-box .result-number {
        font-size: 2.5rem;
    }

    .result-box p {
        font-size: 0.95rem;
    }
}

/* ============================================
   HOME PAGE SECTIONS
   ============================================ */

/* Home Hero Section */
.home-hero-section {
    background: linear-gradient(135deg, rgba(27, 59, 114, 0.85) 0%, rgba(15, 35, 71, 0.9) 100%),
                url('https://shopbeocompass.rs/wp-content/uploads/2025/07/home-page-banner-1-scaled.jpg') center/cover no-repeat;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.home-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(27, 59, 114, 0.3) 100%);
}

.home-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.home-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home-hero-subtitle {
    font-size: 24px;
    color: #d4e8d4;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
}

.btn-home-hero {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #1b3b72;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-home-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #d4e8d4;
}

/* Home Icons Section */
.home-icons-section {
    padding: 80px 0;
    background: #fff;
}

.home-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-icon-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.home-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 59, 114, 0.15);
    border-color: #1b3b72;
}

.home-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8d4 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home-icon-card:hover .home-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #1b3b72 0%, #2e5090 100%);
}

.home-icon-card:hover .home-icon svg {
    stroke: #fff;
}

.home-icon-card h3 {
    font-size: 20px;
    color: #1b3b72;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.home-icon-card p {
    font-size: 15px;
    color: #003D5C;
    line-height: 1.7;
}

/* Home Discount Banner */
.home-discount-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(90, 155, 213, 0.9) 0%, rgba(27, 59, 114, 0.95) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1600') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.home-discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 100%);
}

.discount-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.discount-banner-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.discount-banner-content p {
    font-size: 18px;
    color: #e8f4f8;
    margin-bottom: 35px;
}

.discount-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.discount-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #003D5C;
    transition: all 0.3s ease;
}

.discount-input:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-discount {
    padding: 18px 45px;
    background: #fff;
    color: #1b3b72;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-discount:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #d4e8d4;
}

/* Responsive Styles for Home Page */
@media (max-width: 1024px) {
    .home-icons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        padding: 100px 0;
    }

    .home-hero-title {
        font-size: 42px;
    }

    .home-hero-subtitle {
        font-size: 18px;
    }

    .home-icons-grid {
        grid-template-columns: 1fr;
    }

    .home-discount-banner {
        padding: 60px 0;
    }

    .discount-banner-content h2 {
        font-size: 32px;
    }

    .discount-form {
        flex-direction: column;
    }

    .btn-discount {
        width: 100%;
    }
}

/* ============================================
   ADMIN MEDIA LIBRARY STYLES
   ============================================ */

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.media-item {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.media-preview {
    width: 100%;
    height: 200px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-info {
    padding: 15px;
}

.media-name {
    font-size: 14px;
    font-weight: 600;
    color: #003D5C;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-details {
    font-size: 12px;
    color: #003D5C;
    margin-bottom: 12px;
}

.media-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.copy-url-btn {
    flex: 1;
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .media-preview {
        height: 150px;
    }
}

/* ============================================
   PHYTO-CERAMIDYL OMEGA N PAGE STYLES
   ============================================ */

/* Hero Section */
.phyto-hero {
    background: url('https://www.novalou.com/wp-content/uploads/2023/09/sensitive-skin-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: #2e7d32;
    position: relative;
    overflow: hidden;
}

.phyto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(225, 242, 225, 0.85);
    z-index: 1;
}

.phyto-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.phyto-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b5e20;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phyto-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #2e7d32;
    line-height: 1.4;
}

.phyto-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #33691e;
}

/* Badges Section */
.phyto-badges-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
}

.phyto-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.phyto-badge-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.phyto-badge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.phyto-badge-card .badge-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phyto-badge-card .badge-icon img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.phyto-badge-card:hover .badge-icon img {
    transform: scale(1.1) rotate(5deg);
}

.phyto-badge-card h3 {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 15px;
    font-weight: 600;
}

.phyto-badge-card p {
    color: #558b2f;
    font-size: 1rem;
    line-height: 1.6;
}

/* Intro Section */
.phyto-intro-section {
    padding: 100px 0;
    background: white;
}

.phyto-intro-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.phyto-intro-icon {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.phyto-intro-icon:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.phyto-intro-icon img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.phyto-intro-text h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 25px;
    font-weight: 700;
}

.phyto-intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #003D5C;
    margin-bottom: 20px;
}

/* Composition Section */
.phyto-composition-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f8e9 0%, #ffffff 100%);
}

.phyto-composition-section .container {
    max-width: 1800px;
    width: 92%;
    margin: 0 auto;
    padding: 0 60px;
}

.phyto-composition-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 60px;
    font-weight: 700;
}

.phyto-composition-section .composition-content {
    display: block;
    width: 100%;
}

.composition-details-phyto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    margin: 0 auto;
}

.phyto-component {
    background: white;
    padding: 70px 65px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    width: 100%;
    min-height: 550px;
}

.phyto-component:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: #81c784;
}

.component-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e8f5e9;
}

.component-header img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.component-header h3 {
    font-size: 1.7rem;
    color: #2e7d32;
    font-weight: 600;
    flex: 1;
}

.ceramide-info {
    text-align: center;
}

.ceramide-stat {
    margin: 30px 0;
}

.ceramide-stat .stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #4caf50;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ceramide-stat .stat-label {
    font-size: 1.4rem;
    color: #2e7d32;
    font-weight: 500;
    margin-top: 15px;
}

.ceramide-info p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #003D5C;
    text-align: left;
}

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

.phyto-benefits-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 60px;
    font-weight: 700;
}

.phyto-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.phyto-benefit-card {
    background: linear-gradient(135deg, #f1f8e9 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.phyto-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.phyto-benefit-card:hover::before {
    left: 100%;
}

.phyto-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.phyto-benefit-card .benefit-icon {
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.phyto-benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(360deg);
}

.phyto-benefit-card h3 {
    font-size: 1.3rem;
    color: #1b5e20;
    margin-bottom: 15px;
    font-weight: 600;
}

.phyto-benefit-card .benefit-description {
    color: #558b2f;
    font-size: 1rem;
    line-height: 1.7;
}

/* Clinical Section */
.phyto-clinical-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.phyto-clinical-section .container {
    max-width: 1800px;
    width: 92%;
    margin: 0 auto;
    padding: 0 60px;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 25px;
    font-weight: 700;
}

.section-description-center {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2e7d32;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Clinical Results Wrapper */
.clinical-results-wrapper {
    margin-bottom: 60px;
}

.clinical-section-title {
    font-size: 1.8rem;
    color: #1b5e20;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Clinical Results Scroll Container */
.clinical-results-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.result-box {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    border-left: 6px solid #4caf50;
}

.result-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: #81c784;
}

.result-box .result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2e7d32;
}

/* Clinical Components Wrapper */
.clinical-components-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.clinical-components-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.component-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.component-item:last-child {
    margin-bottom: 0;
}

.component-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.12);
}

.component-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.component-text {
    flex: 1;
}

.component-text strong {
    display: block;
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 8px;
    font-weight: 600;
}

.component-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #558b2f;
    margin: 0;
}

/* Old styles for other pages that might use these classes */
.clinical-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.clinical-image {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.clinical-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.clinical-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.clinical-text h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 25px;
    font-weight: 700;
}

.clinical-text > p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2e7d32;
    margin-bottom: 40px;
}

/* CTA Section */
.phyto-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.phyto-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.phyto-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.phyto-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.phyto-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-phyto-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-phyto-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-phyto-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-phyto-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .phyto-main-title {
        font-size: 2.8rem;
    }

    .phyto-subtitle {
        font-size: 1.5rem;
    }

    .phyto-intro-content,
    .clinical-content {
        grid-template-columns: 1fr;
    }

    /* Composition Details - Horizontal Scroll */
    .phyto-composition-section .composition-details-phyto,
    .composition-details-phyto {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .composition-details-phyto::-webkit-scrollbar {
        height: 8px;
    }

    .composition-details-phyto::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .composition-details-phyto::-webkit-scrollbar-thumb {
        background: #66bb6a;
        border-radius: 10px;
    }

    .composition-details-phyto::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .phyto-component {
        flex: 0 0 340px;
        scroll-snap-align: start;
        padding: 50px 40px;
    }

    .component-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .component-header img {
        width: 60px;
        height: 60px;
    }

    .component-header h3 {
        font-size: 1.4rem;
        text-align: left;
    }

    /* Clinical Results - Horizontal Scroll on Tablet/Mobile */
    .clinical-results-scroll {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
    }

    .clinical-results-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .clinical-results-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .clinical-results-scroll::-webkit-scrollbar-thumb {
        background: #66bb6a;
        border-radius: 10px;
    }

    .clinical-results-scroll::-webkit-scrollbar-thumb:hover {
        background: #4caf50;
    }

    .result-box {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .phyto-hero {
        padding: 80px 0;
    }

    .phyto-main-title {
        font-size: 2.2rem;
    }

    .phyto-subtitle {
        font-size: 1.3rem;
    }

    .phyto-description {
        font-size: 1rem;
    }

    .phyto-badges-grid,
    .phyto-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .phyto-intro-text h2,
    .clinical-text h2 {
        font-size: 2rem;
    }

    .phyto-composition-section .section-title,
    .phyto-benefits-section .section-title {
        font-size: 2.2rem;
    }

    .phyto-cta-content h2 {
        font-size: 2.2rem;
    }

    .btn-phyto-cta {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Components Icons Section */
.phyto-components-icons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.components-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.component-icon-card {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.component-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a5f8f 0%, #6a7faf 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.component-icon-card:hover::before {
    transform: scaleX(1);
}

.component-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 95, 143, 0.15);
    border-color: #4a5f8f;
}

.icon-wrapper {
    margin: 0 auto 30px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.component-icon-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper svg,
.icon-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(74, 95, 143, 0.2));
    transition: filter 0.4s ease;
}

.component-icon-card:hover .icon-wrapper svg,
.component-icon-card:hover .icon-wrapper img {
    filter: drop-shadow(0 8px 20px rgba(74, 95, 143, 0.3));
}

.component-icon-card h3 {
    font-size: 1.4rem;
    color: #003D5C;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.component-icon-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .components-icons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .component-icon-card {
        padding: 40px 30px;
    }
}

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

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #e1f2e1 0%, #c8e6c9 100%);
    padding: 100px 0;
    text-align: center;
    color: #1b5e20;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1b5e20;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: 1.3rem;
    color: #2e7d32;
    font-weight: 500;
}

/* Blog Search and Filter Section */
.blog-search-filter {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e8f5e9;
}

.blog-filter-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-search-container {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.blog-search-input {
    flex: 1;
    padding: 15px 25px;
    font-size: 1.05rem;
    border: 2px solid #e8f5e9;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.blog-search-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.blog-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Mobile Search Bar with Filter Icon */
.blog-mobile-search-bar {
    display: none;
    gap: 10px;
    align-items: center;
}

.mobile-search-wrapper {
    flex: 1;
    display: flex;
    gap: 8px;
    background: white;
    border: 2px solid #e8f5e9;
    border-radius: 25px;
    padding: 8px 12px;
}

.mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.mobile-search-btn {
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-search-btn:hover {
    background: #388e3c;
}

.mobile-filter-icon {
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-filter-icon:hover {
    background: #388e3c;
}

/* Desktop Search (hidden on mobile) */
.blog-desktop-search {
    display: block;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-btn {
    padding: 12px 30px;
    background: white;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #e8f5e9;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    border-color: #4caf50;
    background: #f1f8e9;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.clear-filters-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #fff3e0;
    color: #e65100;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.clear-filters-btn:hover {
    background: #ffe0b2;
    transform: translateY(-2px);
}

.blog-results-info {
    text-align: center;
    padding: 20px;
    background: #f1f8e9;
    border-radius: 15px;
    margin-top: 20px;
}

.blog-results-info p {
    font-size: 1.05rem;
    color: #2e7d32;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.blog-posts-section .container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.95);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #757575;
    font-size: 0.95rem;
}

.blog-date svg {
    color: #4caf50;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    color: #1b5e20;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.4rem;
}

.blog-excerpt {
    font-size: 1.05rem;
    color: #003D5C;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4caf50;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card:hover .read-more {
    gap: 15px;
    color: #2e7d32;
}

.read-more svg {
    transition: transform 0.3s ease;
}

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

/* No Blog Posts */
.no-blog-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-blog-posts p {
    font-size: 1.3rem;
    color: #757575;
    margin-bottom: 30px;
}

.btn-back-to-blog {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-back-to-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    /* Show mobile search bar, hide desktop search */
    .blog-mobile-search-bar {
        display: flex;
    }

    .blog-desktop-search {
        display: none;
    }

    /* Categories hidden by default on mobile, shown when toggled */
    .blog-categories {
        flex-direction: column;
        position: absolute;
        background: white;
        border: 2px solid #e8f5e9;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 10px;
        right: 15px;
    }

    .blog-categories.mobile-active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .category-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Blog grid - 2 columns on mobile */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Smaller blog cards for 2-column layout */
    .blog-card-image {
        height: 120px;
    }

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

    .blog-card-content h3 {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 6px;
        min-height: auto;
        -webkit-line-clamp: 2;
    }

    .blog-excerpt {
        font-size: 9px;
        line-height: 1.4;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }

    .blog-meta {
        margin-bottom: 6px;
    }

    .blog-date {
        font-size: 8px;
    }

    .blog-date svg {
        width: 10px;
        height: 10px;
    }

    .blog-category-badge {
        font-size: 8px;
        padding: 3px 8px;
    }

    .read-more {
        font-size: 9px;
        gap: 4px;
    }

    .read-more svg {
        width: 10px;
        height: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .blog-search-filter {
        padding: 30px 0;
    }

    .blog-filter-form {
        gap: 15px;
        position: relative;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-card-content h3 {
        font-size: 1.2rem;
    }
}

/* ===================================
   FAQ Accordion Styles
   =================================== */

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    color: #1b5e20;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e1f2e1;
}

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

.faq-item:hover {
    border-color: #81c784;
    box-shadow: 0 2px 8px rgba(129, 199, 132, 0.2);
}

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

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

.faq-item.active .faq-question {
    background: #e1f2e1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c5530;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1b5e20;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    margin: 0;
    color: #003D5C;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 18px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-toggle {
        font-size: 1.5rem;
        min-width: 25px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 18px;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Indufence Page Styles
   =================================== */

/* Hero Section */
.indufence-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4edda 0%, #e1f2e1 50%, #c3e6cb 100%);
    overflow: hidden;
}

.indufence-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero-overlay-indufence {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(129, 199, 132, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.hero-content-indufence {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1b5e20;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-indufence h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e7d32;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.hero-content-indufence h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1b5e20;
}

.hero-content-indufence p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2c5530;
}

/* Intro Section */
.indufence-intro-section {
    padding: 80px 0;
    background: white;
}

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

.intro-text-indufence h2 {
    color: #1b5e20;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.intro-text-indufence p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.intro-text-indufence p strong {
    color: #2e7d32;
    font-weight: 600;
}

.intro-image-indufence {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image-indufence img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.15);
}

/* Barrier Section */
.barrier-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fdf8 0%, #e1f2e1 100%);
}

.section-title-center {
    text-align: center;
    color: #1b5e20;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description-center {
    text-align: center;
    color: #003D5C;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.barrier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.barrier-box {
    background: white;
    padding: 45px 40px;
    border-radius: 12px;
    border: 2px solid #e1f2e1;
    transition: all 0.3s ease;
    position: relative;
}

.barrier-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.15);
    border-color: #81c784;
}

.barrier-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.barrier-box h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 15px;
}

.barrier-box p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.barrier-detail {
    background: #f8fdf8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #66bb6a;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #2c5530;
}

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

.mechanism-image-container {
    text-align: center;
    margin: 50px 0;
}

.mechanism-diagram {
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mechanism-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: linear-gradient(to bottom, #f8fdf8, white);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e1f2e1;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.15);
    border-color: #81c784;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1rem;
}

/* Clinical Evidence Section */
.indufence-clinical-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4edda 0%, #e1f2e1 100%);
    color: #1b5e20;
    position: relative;
    overflow: hidden;
}

.indufence-clinical-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
    z-index: 0;
}

.indufence-clinical-section .container {
    position: relative;
    z-index: 1;
}

.indufence-clinical-section .section-title-center,
.indufence-clinical-section .section-description-center {
    color: #1b5e20;
}

.clinical-results-indufence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.clinical-stat {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c3e6cb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.clinical-stat:hover {
    background: #f8fdf8;
    transform: translateY(-5px);
    border-color: #81c784;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2e7d32;
}

.clinical-stat p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #003D5C;
}

.clinical-note {
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    border-left: 5px solid #66bb6a;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.clinical-note p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #003D5C;
}

.clinical-note p:last-child {
    margin-bottom: 0;
}

.clinical-note strong {
    color: #2e7d32;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .intro-content-indufence {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Barrier Grid - Horizontal Scroll */
    .barrier-section .barrier-grid,
    .barrier-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 30px 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px;
    }

    .barrier-grid::-webkit-scrollbar {
        height: 8px;
    }

    .barrier-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .barrier-grid::-webkit-scrollbar-thumb {
        background: #81c784;
        border-radius: 10px;
    }

    .barrier-grid::-webkit-scrollbar-thumb:hover {
        background: #66bb6a;
    }

    .barrier-box {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }

    /* Mechanism Benefits - Horizontal Scroll */
    .mechanism-section .mechanism-benefits,
    .mechanism-benefits {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .mechanism-benefits::-webkit-scrollbar {
        height: 8px;
    }

    .mechanism-benefits::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .mechanism-benefits::-webkit-scrollbar-thumb {
        background: #81c784;
        border-radius: 10px;
    }

    .mechanism-benefits::-webkit-scrollbar-thumb:hover {
        background: #66bb6a;
    }

    .benefit-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .clinical-results-indufence {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

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

    .hero-content-indufence h2 {
        font-size: 1.3rem;
    }

    .hero-content-indufence p {
        font-size: 1rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .section-description-center {
        font-size: 1rem;
    }

    .barrier-box,
    .benefit-item,
    .clinical-stat {
        padding: 30px 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   Soothing Fucogel Page Styles
   =================================== */

/* Hero Section */
.fucogel-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    overflow: hidden;
}

.fucogel-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero-overlay-fucogel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(100, 181, 246, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.hero-content-fucogel {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #0d47a1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-fucogel h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1565c0;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.hero-content-fucogel h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #0d47a1;
}

.hero-content-fucogel p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1976d2;
}

/* Intro Section */
.fucogel-intro-section {
    padding: 80px 0;
    background: white;
}

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

.intro-text-fucogel h2 {
    color: #1565c0;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.intro-text-fucogel p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.intro-text-fucogel p strong {
    color: #1976d2;
    font-weight: 600;
}

.intro-image-fucogel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image-fucogel img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
}

/* Benefits Section */
.fucogel-benefits-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f5f9ff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.fucogel-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
    z-index: 0;
}

.fucogel-benefits-section .container {
    position: relative;
    z-index: 1;
}

.fucogel-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.fucogel-benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #bbdefb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.fucogel-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
    border-color: #64b5f6;
}

.benefit-icon-fucogel {
    font-size: 3rem;
    margin-bottom: 20px;
}

.fucogel-benefit-card h3 {
    color: #1565c0;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fucogel-benefit-card p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Clinical Section */
.fucogel-clinical-section {
    padding: 80px 0;
    background: white;
}

.clinical-study-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 50px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 6px 25px rgba(33, 150, 243, 0.15);
}

.study-method {
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 5px solid #42a5f5;
}

.study-method h3 {
    color: #1565c0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.study-method p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
}

.clinical-results-fucogel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.result-stat-fucogel {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1976d2;
    display: block;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    color: #003D5C;
    display: block;
}

.stat-highlight {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
}

.time-badge {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.stat-highlight p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.study-conclusion {
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.study-conclusion p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.study-conclusion p:last-child {
    margin-bottom: 0;
}

.study-conclusion strong {
    color: #1565c0;
    font-weight: 600;
}

/* Moisturization Section */
.fucogel-moisturization-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.fucogel-moisturization-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.fucogel-moisturization-section .container {
    position: relative;
    z-index: 1;
}

.moisturization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.moisturization-text {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
}

.moisturization-text h3 {
    color: #1565c0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.moisturization-text p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.moisturization-study-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.moisturization-study-box h3 {
    color: #1565c0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.moisturization-study-box p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.moisturization-study-box p:last-child {
    margin-bottom: 0;
}

.moisturization-results {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.moisture-point {
    text-align: center;
    flex: 1;
}

.time-marker {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 10px;
}

.moisture-point p {
    font-size: 0.95rem;
    color: #003D5C;
    margin: 0;
}

.moisturization-highlight {
    display: flex;
    align-items: center;
}

.highlight-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #42a5f5;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
    text-align: center;
}

.highlight-box h4 {
    color: #1565c0;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* CTA Section */
.fucogel-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.fucogel-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.fucogel-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fucogel-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.fucogel-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-fucogel-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-fucogel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .intro-content-fucogel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Fucogel Benefits Grid - Horizontal Scroll */
    .fucogel-benefits-section .fucogel-benefits-grid,
    .fucogel-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .fucogel-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .fucogel-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .fucogel-benefits-grid::-webkit-scrollbar-thumb {
        background: #64b5f6;
        border-radius: 10px;
    }

    .fucogel-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #42a5f5;
    }

    .fucogel-benefit-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Clinical Results Fucogel - Horizontal Scroll */
    .fucogel-clinical-section .clinical-results-fucogel,
    .clinical-results-fucogel {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .clinical-results-fucogel::-webkit-scrollbar {
        height: 8px;
    }

    .clinical-results-fucogel::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .clinical-results-fucogel::-webkit-scrollbar-thumb {
        background: #64b5f6;
        border-radius: 10px;
    }

    .clinical-results-fucogel::-webkit-scrollbar-thumb:hover {
        background: #42a5f5;
    }

    .result-stat-fucogel {
        flex: 0 0 220px;
        scroll-snap-align: start;
    }

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

    /* Moisturization Results - Horizontal Scroll */
    .moisturization-results {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: row !important;
    }

    .moisturization-results::-webkit-scrollbar {
        height: 8px;
    }

    .moisturization-results::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .moisturization-results::-webkit-scrollbar-thumb {
        background: #64b5f6;
        border-radius: 10px;
    }

    .moisturization-results::-webkit-scrollbar-thumb:hover {
        background: #42a5f5;
    }

    .moisture-point {
        flex: 0 0 180px;
        scroll-snap-align: start;
        background: white;
        padding: 30px 20px;
        border-radius: 12px;
        border: 2px solid #bbdefb;
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
    }
}

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

    .hero-content-fucogel h2 {
        font-size: 1.3rem;
    }

    .hero-content-fucogel p {
        font-size: 1rem;
    }

    .clinical-study-box {
        padding: 30px 25px;
    }

    .stat-percentage {
        font-size: 2.5rem;
    }

    .time-badge {
        font-size: 2rem;
    }
}

/* ===================================
   Peptizinc Page Styles
   =================================== */

/* Hero Section */
.peptizinc-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffe082 100%);
    overflow: hidden;
}

.peptizinc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero-overlay-peptizinc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 179, 0, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.hero-content-peptizinc {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #e65100;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-peptizinc h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f57c00;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.hero-content-peptizinc h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e65100;
}

.hero-content-peptizinc p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ef6c00;
}

/* Intro Section */
.peptizinc-intro-section {
    padding: 80px 0;
    background: white;
}

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

.intro-text-peptizinc h2 {
    color: #f57c00;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.intro-text-peptizinc p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.intro-text-peptizinc p strong {
    color: #ef6c00;
    font-weight: 600;
}

.intro-image-peptizinc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image-peptizinc img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
}

/* Benefits Section */
.peptizinc-benefits-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fffbf0 0%, #fff8e1 100%);
    position: relative;
    overflow: hidden;
}

.peptizinc-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
    z-index: 0;
}

.peptizinc-benefits-section .container {
    position: relative;
    z-index: 1;
}

.peptizinc-action-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.action-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #ffe082;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
}

.action-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
    border-color: #ffc107;
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.action-feature h3 {
    color: #f57c00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.action-feature p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.05rem;
}

.peptizinc-description {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
    margin-top: 40px;
}

.peptizinc-description p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.peptizinc-description strong {
    color: #f57c00;
    font-weight: 600;
}

/* Botanicals Section */
.peptizinc-botanicals-section {
    padding: 80px 0;
    background: white;
}

.botanicals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.botanical-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #ffe082;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
}

.botanical-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
    border-color: #ffc107;
}

.botanical-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    border: 3px solid #ffc107;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
}

.botanical-card h3 {
    color: #f57c00;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.botanical-card p {
    color: #003D5C;
    font-size: 1rem;
    margin: 0;
}

.botanicals-note {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    border: 2px solid #ffb74d;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
}

.botanicals-note p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.botanicals-note strong {
    color: #ef6c00;
    font-weight: 600;
}

/* Mechanism Section */
.peptizinc-mechanism-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    position: relative;
    overflow: hidden;
}

.peptizinc-mechanism-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.peptizinc-mechanism-section .container {
    position: relative;
    z-index: 1;
}

.mechanism-grid-peptizinc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mechanism-item-peptizinc {
    background: white;
    padding: 40px 35px;
    border-radius: 12px;
    border: 2px solid #ffe082;
    position: relative;
    padding-top: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
}

.mechanism-item-peptizinc:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
    border-color: #ffc107;
}

.mechanism-number {
    position: absolute;
    top: -20px;
    left: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f57c00, #ffa726);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

.mechanism-item-peptizinc h3 {
    color: #f57c00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mechanism-item-peptizinc p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Clinical Badge Section */
.peptizinc-clinical-badge {
    padding: 80px 0;
    background: white;
}

.clinical-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: linear-gradient(135deg, #e1f2e1 0%, #c8e6c9 100%);
    padding: 50px 60px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.15);
}

.badge-seal {
    flex-shrink: 0;
}

.badge-text h3 {
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.badge-text p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* CTA Section */
.peptizinc-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.peptizinc-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.peptizinc-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.peptizinc-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.peptizinc-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-peptizinc-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-peptizinc-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .intro-content-peptizinc {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Peptizinc Action Box - Horizontal Scroll */
    .peptizinc-benefits-section .peptizinc-action-box,
    .peptizinc-action-box {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .peptizinc-action-box::-webkit-scrollbar {
        height: 8px;
    }

    .peptizinc-action-box::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .peptizinc-action-box::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 10px;
    }

    .peptizinc-action-box::-webkit-scrollbar-thumb:hover {
        background: #ffb300;
    }

    .action-feature {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Botanicals Grid - Horizontal Scroll */
    .peptizinc-botanicals-section .botanicals-grid,
    .botanicals-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .botanicals-grid::-webkit-scrollbar {
        height: 8px;
    }

    .botanicals-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .botanicals-grid::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 10px;
    }

    .botanicals-grid::-webkit-scrollbar-thumb:hover {
        background: #ffb300;
    }

    .botanical-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    /* Mechanism Grid Peptizinc - Horizontal Scroll */
    .peptizinc-mechanism-section .mechanism-grid-peptizinc,
    .mechanism-grid-peptizinc {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 30px 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px;
    }

    .mechanism-grid-peptizinc::-webkit-scrollbar {
        height: 8px;
    }

    .mechanism-grid-peptizinc::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .mechanism-grid-peptizinc::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 10px;
    }

    .mechanism-grid-peptizinc::-webkit-scrollbar-thumb:hover {
        background: #ffb300;
    }

    .mechanism-item-peptizinc {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }
}

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

    .hero-content-peptizinc h2 {
        font-size: 1.3rem;
    }

    .hero-content-peptizinc p {
        font-size: 1rem;
    }

    .clinical-badge-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .badge-text h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Marine Ocean-Mist Page Styles
   =================================== */

/* Hero Section */
.marine-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b2ebf2 0%, #80deea 50%, #4dd0e1 100%);
    overflow: hidden;
}

.marine-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero-overlay-marine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 172, 193, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.hero-content-marine {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #006064;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-marine h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00838f;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.hero-content-marine h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #006064;
}

.hero-content-marine p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #00838f;
}

/* Intro Section */
.marine-intro-section {
    padding: 80px 0;
    background: white;
}

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

.intro-text-marine h2 {
    color: #00838f;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.intro-text-marine p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.intro-text-marine p strong {
    color: #00acc1;
    font-weight: 600;
}

.intro-image-marine {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image-marine img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.15);
}

/* Sustainability Section */
.marine-sustainability-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f1f8f9 0%, #e0f2f1 100%);
    position: relative;
    overflow: hidden;
}

.marine-sustainability-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
    z-index: 0;
}

.marine-sustainability-section .container {
    position: relative;
    z-index: 1;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sustainability-badge {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #b2ebf2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.sustainability-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
    border-color: #4dd0e1;
}

.badge-icon-marine {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-marine img {
    max-width: 100%;
    height: auto;
}

.sustainability-badge h3 {
    color: #00838f;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sustainability-badge p {
    color: #003D5C;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.marine-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.marine-benefit-item {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #80deea;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.marine-benefit-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
    border-color: #26c6da;
}

.benefit-icon-marine {
    font-size: 3rem;
    margin-bottom: 20px;
}

.marine-benefit-item h3 {
    color: #00838f;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.marine-benefit-item p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.marine-benefits-highlight {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    border-left: 5px solid #00acc1;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.15);
}

.marine-benefits-highlight p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.marine-benefits-highlight strong {
    color: #00838f;
    font-weight: 600;
}

/* Clinical Section */
.marine-clinical-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
    position: relative;
    overflow: hidden;
}

.marine-clinical-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.marine-clinical-section .container {
    position: relative;
    z-index: 1;
}

.clinical-content-marine {
    margin-top: 50px;
}

.clinical-info-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.15);
}

.clinical-info-box h3 {
    color: #00838f;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.clinical-info-box p {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.clinical-info-box p:last-child {
    margin-bottom: 0;
}

.clinical-info-box strong {
    color: #00acc1;
    font-weight: 600;
}

.clinical-results-marine {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.result-highlight-marine {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.2);
}

.percentage-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00acc1, #26c6da);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 6px 20px rgba(0, 172, 193, 0.3);
}

.percentage-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.result-highlight-marine h4 {
    color: #00838f;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-highlight-marine p {
    color: #003D5C;
    line-height: 1.7;
    font-size: 1.05rem;
}

.result-benefit-marine {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.15);
}

.result-benefit-marine h4 {
    color: #00838f;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.result-benefit-marine ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-benefit-marine li {
    color: #003D5C;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.result-benefit-marine li:last-child {
    margin-bottom: 0;
}

.result-benefit-marine li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00acc1;
    font-weight: 700;
    font-size: 1.3rem;
}

.result-benefit-marine strong {
    color: #00838f;
    font-weight: 600;
}

/* CTA Section */
.marine-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.marine-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.marine-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.marine-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.marine-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-marine-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-marine-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .intro-content-marine {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Sustainability Grid - Horizontal Scroll */
    .marine-sustainability-section .sustainability-grid,
    .sustainability-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .sustainability-grid::-webkit-scrollbar {
        height: 8px;
    }

    .sustainability-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .sustainability-grid::-webkit-scrollbar-thumb {
        background: #4dd0e1;
        border-radius: 10px;
    }

    .sustainability-grid::-webkit-scrollbar-thumb:hover {
        background: #26c6da;
    }

    .sustainability-badge {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    /* Marine Benefits Grid - Horizontal Scroll */
    .marine-benefits-section .marine-benefits-grid,
    .marine-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .marine-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .marine-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .marine-benefits-grid::-webkit-scrollbar-thumb {
        background: #4dd0e1;
        border-radius: 10px;
    }

    .marine-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #26c6da;
    }

    .marine-benefit-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Clinical Results Marine - Horizontal Scroll */
    .marine-clinical-section .clinical-results-marine,
    .clinical-results-marine {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .clinical-results-marine::-webkit-scrollbar {
        height: 8px;
    }

    .clinical-results-marine::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .clinical-results-marine::-webkit-scrollbar-thumb {
        background: #4dd0e1;
        border-radius: 10px;
    }

    .clinical-results-marine::-webkit-scrollbar-thumb:hover {
        background: #26c6da;
    }

    .result-highlight-marine,
    .result-benefit-marine {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }
}

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

    .hero-content-marine h2 {
        font-size: 1.3rem;
    }

    .hero-content-marine p {
        font-size: 1rem;
    }

    .percentage-circle {
        width: 150px;
        height: 150px;
    }

    .percentage-number {
        font-size: 3rem;
    }
}

/* Indufence CTA Section */
.indufence-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.indufence-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.indufence-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.indufence-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.indufence-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-indufence-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-indufence-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* ================== GLYCOSNAIL VEG PAGE STYLES ================== */

/* Hero Section */
.glycosnail-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #faf3e0 0%, #f5e6d3 50%, #f0d9c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.glycosnail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 184, 150, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.hero-overlay-glycosnail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(250, 243, 224, 0.3), rgba(245, 230, 211, 0.5));
}

.hero-content-glycosnail {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #6d4c41;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-glycosnail h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(109, 76, 65, 0.1);
}

.hero-content-glycosnail h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #8d6e63;
}

.hero-content-glycosnail p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #795548;
}

/* Intro Section */
.glycosnail-intro-section {
    padding: 100px 0;
    background: #fff;
}

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

.intro-text-glycosnail h2 {
    font-size: 2.5rem;
    color: #6d4c41;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-glycosnail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d4037;
    margin-bottom: 20px;
}

.intro-text-glycosnail strong {
    color: #6d4c41;
    font-weight: 600;
}

.intro-image-glycosnail img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(109, 76, 65, 0.15);
    transition: transform 0.3s ease;
}

.intro-image-glycosnail img:hover {
    transform: scale(1.02);
}

/* What is Glycosnail Section */
.glycosnail-what-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #faf3e0, #fff8e6);
    position: relative;
    overflow: hidden;
}

.glycosnail-what-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 184, 150, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.glycosnail-what-section .container {
    position: relative;
    z-index: 2;
}

.glycosnail-composition {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.composition-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(109, 76, 65, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f5e6d3;
}

.composition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(109, 76, 65, 0.2);
    border-color: #d4b896;
}

.composition-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.composition-card h3 {
    font-size: 1.3rem;
    color: #6d4c41;
    margin-bottom: 10px;
    font-weight: 600;
}

.composition-card p {
    font-size: 1rem;
    color: #8d6e63;
    line-height: 1.6;
}

/* Vegan Badge */
.glycosnail-vegan-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.15);
    max-width: 600px;
    margin: 60px auto 0;
}

.vegan-seal {
    flex-shrink: 0;
}

.vegan-text h3 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 10px;
    font-weight: 700;
}

.vegan-text p {
    font-size: 1rem;
    color: #66bb6a;
    line-height: 1.6;
}

/* Benefits Section */
.glycosnail-benefits-section {
    padding: 100px 0;
    background: #fff;
}

.glycosnail-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 60px 0;
}

.glycosnail-benefit-card {
    background: linear-gradient(135deg, #faf3e0, #f5e6d3);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(109, 76, 65, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0d9c4;
}

.glycosnail-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(109, 76, 65, 0.2);
    border-color: #d4b896;
}

.benefit-icon-glycosnail {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.glycosnail-benefit-card h3 {
    font-size: 1.4rem;
    color: #6d4c41;
    margin-bottom: 15px;
    font-weight: 600;
}

.glycosnail-benefit-card p {
    font-size: 1rem;
    color: #8d6e63;
    line-height: 1.7;
}

.glycosnail-suitable {
    background: linear-gradient(135deg, #f0d9c4, #e8cdb5);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(109, 76, 65, 0.15);
    margin-top: 50px;
}

.glycosnail-suitable p {
    font-size: 1.2rem;
    color: #6d4c41;
    line-height: 1.8;
    margin: 0;
}

.glycosnail-suitable strong {
    color: #5d4037;
    font-weight: 700;
}

/* Clinical Evidence Section */
.glycosnail-clinical-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff8e6, #faf3e0);
    position: relative;
    overflow: hidden;
}

.glycosnail-clinical-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 184, 150, 0.12) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.glycosnail-clinical-section .container {
    position: relative;
    z-index: 2;
}

.clinical-study-glycosnail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.study-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(109, 76, 65, 0.1);
}

.study-details h3 {
    font-size: 2rem;
    color: #6d4c41;
    margin-bottom: 30px;
    font-weight: 700;
}

.study-params {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.param-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #faf3e0;
    border-radius: 12px;
    border-left: 4px solid #d4b896;
}

.param-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.param-item strong {
    display: block;
    font-size: 1.2rem;
    color: #6d4c41;
    margin-bottom: 5px;
}

.param-item p {
    font-size: 1rem;
    color: #8d6e63;
    margin: 0;
}

/* Study Results */
.study-results-glycosnail {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(109, 76, 65, 0.1);
}

.study-results-glycosnail h3 {
    font-size: 2rem;
    color: #6d4c41;
    margin-bottom: 30px;
    font-weight: 700;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item-glycosnail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-item-glycosnail:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.result-item-glycosnail p {
    font-size: 1.1rem;
    color: #2e7d32;
    margin: 0;
    line-height: 1.6;
}

/* Clinical Conclusion */
.clinical-conclusion {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(109, 76, 65, 0.1);
}

.snail-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(109, 76, 65, 0.15);
}

.conclusion-text h4 {
    font-size: 1.8rem;
    color: #6d4c41;
    margin-bottom: 20px;
    font-weight: 700;
}

.conclusion-text p {
    font-size: 1.1rem;
    color: #5d4037;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.glycosnail-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.glycosnail-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.glycosnail-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.glycosnail-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.glycosnail-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-glycosnail-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-glycosnail-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content-glycosnail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Glycosnail Composition - Horizontal Scroll */
    .glycosnail-what-section .glycosnail-composition,
    .glycosnail-composition {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .glycosnail-composition::-webkit-scrollbar {
        height: 8px;
    }

    .glycosnail-composition::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .glycosnail-composition::-webkit-scrollbar-thumb {
        background: #d4b896;
        border-radius: 10px;
    }

    .glycosnail-composition::-webkit-scrollbar-thumb:hover {
        background: #c0a280;
    }

    .composition-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Glycosnail Benefits Grid - Horizontal Scroll */
    .glycosnail-benefits-section .glycosnail-benefits-grid,
    .glycosnail-benefits-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 30px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .glycosnail-benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .glycosnail-benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .glycosnail-benefits-grid::-webkit-scrollbar-thumb {
        background: #d4b896;
        border-radius: 10px;
    }

    .glycosnail-benefits-grid::-webkit-scrollbar-thumb:hover {
        background: #c0a280;
    }

    .glycosnail-benefit-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .clinical-study-glycosnail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clinical-conclusion {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

    .hero-content-glycosnail h2 {
        font-size: 1.3rem;
    }

    .hero-content-glycosnail p {
        font-size: 1rem;
    }

    .glycosnail-vegan-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ================== ZEOLITE PAGE STYLES ================== */

/* Hero Section */
.zeolite-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #cfd8dc 0%, #b0bec5 50%, #90a4ae 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zeolite-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 125, 139, 0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.hero-overlay-zeolite {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(207, 216, 220, 0.3), rgba(176, 190, 197, 0.5));
}

.hero-content-zeolite {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #37474f;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-zeolite h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(55, 71, 79, 0.1);
}

.hero-content-zeolite h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #455a64;
}

.hero-content-zeolite p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Intro Section */
.zeolite-intro-section {
    padding: 100px 0;
    background: #fff;
}

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

.intro-text-zeolite h2 {
    font-size: 2.5rem;
    color: #37474f;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-zeolite p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.intro-text-zeolite em {
    font-style: italic;
    color: #607d8b;
}

.intro-text-zeolite strong {
    color: #37474f;
    font-weight: 600;
}

.intro-image-zeolite img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(55, 71, 79, 0.2);
    transition: transform 0.3s ease;
}

.intro-image-zeolite img:hover {
    transform: scale(1.02);
}

/* Formation Section */
.zeolite-formation-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #eceff1, #cfd8dc);
    position: relative;
    overflow: hidden;
}

.zeolite-formation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 125, 139, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolite-formation-section .container {
    position: relative;
    z-index: 2;
}

.formation-story {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
    gap: 20px;
}

.formation-step {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(55, 71, 79, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #607d8b;
}

.formation-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(55, 71, 79, 0.25);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #607d8b, #78909c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.formation-step h3 {
    font-size: 1.5rem;
    color: #37474f;
    margin-bottom: 15px;
    font-weight: 600;
}

.formation-step p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.formation-arrow {
    font-size: 2.5rem;
    color: #78909c;
    font-weight: 700;
    flex-shrink: 0;
}

.formation-highlight {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(55, 71, 79, 0.15);
    border-left: 6px solid #607d8b;
}

.formation-highlight p {
    font-size: 1.2rem;
    color: #37474f;
    line-height: 1.8;
    margin: 0;
}

/* Discovery Section */
.zeolite-discovery-section {
    padding: 100px 0;
    background: #fff;
}

.discovery-content {
    max-width: 900px;
    margin: 0 auto;
}

.discovery-text h2 {
    font-size: 2.8rem;
    color: #37474f;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.discovery-text > p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #eceff1, #cfd8dc);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(55, 71, 79, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(55, 71, 79, 0.2);
}

.year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #607d8b;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(96, 125, 139, 0.2);
}

.event h4 {
    font-size: 1.4rem;
    color: #37474f;
    margin-bottom: 10px;
    font-weight: 600;
}

.event p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
}

/* What Makes Zeolite Special */
.zeolite-special-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e8eaf6, #c5cae9);
    position: relative;
    overflow: hidden;
}

.zeolite-special-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolite-special-section .container {
    position: relative;
    z-index: 2;
}

.special-highlight-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(63, 81, 181, 0.2);
    text-align: center;
    margin: 60px 0;
    border: 3px solid #5c6bc0;
}

.special-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.special-highlight-box p {
    font-size: 1.3rem;
    color: #37474f;
    line-height: 1.8;
    margin: 0;
}

.zeolite-structure {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(55, 71, 79, 0.15);
    text-align: center;
}

.zeolite-structure h3 {
    font-size: 2rem;
    color: #37474f;
    margin-bottom: 20px;
    font-weight: 700;
}

.zeolite-structure p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin: 0;
}

/* Applications Section */
.zeolite-applications-section {
    padding: 100px 0;
    background: #fff;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.application-card {
    background: linear-gradient(135deg, #eceff1, #cfd8dc);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(55, 71, 79, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid #607d8b;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(55, 71, 79, 0.2);
    border-bottom-color: #455a64;
}

.app-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.application-card h3 {
    font-size: 1.4rem;
    color: #37474f;
    margin-bottom: 15px;
    font-weight: 600;
}

.application-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

/* Detoxification Section */
.zeolite-detox-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e0f2f1, #b2dfdb);
    position: relative;
    overflow: hidden;
}

.zeolite-detox-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolite-detox-section .container {
    position: relative;
    z-index: 2;
}

.detox-mechanism {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 60px 0;
}

.mechanism-card-zeolite {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 150, 136, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #00897b;
}

.mechanism-card-zeolite:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 150, 136, 0.25);
}

.mechanism-card-zeolite img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: block;
}

.mechanism-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.mechanism-card-zeolite h3 {
    font-size: 1.5rem;
    color: #00695c;
    margin-bottom: 15px;
    font-weight: 600;
}

.mechanism-card-zeolite p {
    font-size: 1.05rem;
    color: #00796b;
    line-height: 1.7;
}

.detox-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 150, 136, 0.15);
}

.detox-benefits h3 {
    font-size: 1.8rem;
    color: #00695c;
    margin-bottom: 25px;
    font-weight: 700;
}

.detox-benefits ul {
    list-style: none;
    padding: 0;
}

.detox-benefits li {
    font-size: 1.15rem;
    color: #00796b;
    line-height: 2;
    padding: 10px 0;
    border-bottom: 1px solid #b2dfdb;
}

.detox-benefits li:last-child {
    border-bottom: none;
}

/* Aluminum Safety Section */
.zeolite-aluminum-section {
    padding: 100px 0;
    background: #fff;
}

.aluminum-question {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 30px 40px;
    border-radius: 15px;
    border-left: 6px solid #ff9800;
    margin-bottom: 40px;
}

.question-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.aluminum-question h3 {
    font-size: 1.6rem;
    color: #e65100;
    margin: 0;
    font-weight: 600;
}

.aluminum-answer {
    max-width: 900px;
    margin: 0 auto;
}

.aluminum-answer > p {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pma-highlight {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #66bb6a;
}

.pma-highlight h4 {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.pma-highlight p {
    font-size: 1.1rem;
    color: #388e3c;
    line-height: 1.7;
    margin: 0;
}

.clinical-proof {
    display: flex;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(55, 71, 79, 0.1);
    border-left: 6px solid #1976d2;
}

.proof-badge {
    font-size: 3rem;
    flex-shrink: 0;
}

.proof-text h4 {
    font-size: 1.4rem;
    color: #1565c0;
    margin-bottom: 10px;
    font-weight: 700;
}

.proof-text p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
}

/* Comparison Section */
.zeolite-comparison-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa, #eceff1);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 60px 0;
}

.comparison-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(55, 71, 79, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(55, 71, 79, 0.2);
}

.zeolite-card {
    border: 3px solid #4caf50;
    background: linear-gradient(135deg, #f1f8e9, #dcedc8);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2.5rem;
}

.comparison-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #37474f;
}

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

.comparison-card li {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.9;
    padding: 8px 0;
    border-bottom: 1px solid #eceff1;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.zeolite-card li {
    color: #2e7d32;
    font-weight: 500;
}

.comparison-conclusion {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #4caf50;
}

.comparison-conclusion p {
    font-size: 1.25rem;
    color: #1b5e20;
    line-height: 1.8;
    margin: 0;
}

/* Action Buttons Section */
.zeolite-actions-section {
    padding: 100px 0;
    background: #fff;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.action-button-zeolite {
    display: block;
    background: linear-gradient(135deg, #546e7a, #607d8b);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 30px rgba(84, 110, 122, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-button-zeolite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-button-zeolite:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(84, 110, 122, 0.4);
}

.action-button-zeolite:hover::before {
    opacity: 1;
}

.action-button-zeolite img {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: block;
    filter: brightness(0) invert(1);
}

.action-button-zeolite h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.action-button-zeolite p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Certification Section */
.zeolite-certification-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
    position: relative;
    overflow: hidden;
}

.zeolite-certification-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolite-certification-section .container {
    position: relative;
    z-index: 2;
}

.certification-content {
    max-width: 1000px;
    margin: 60px auto;
}

.cert-question {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.15);
    margin-bottom: 40px;
}

.cert-question h3 {
    font-size: 1.6rem;
    color: #1565c0;
    margin-bottom: 20px;
    font-weight: 700;
}

.cert-question p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin: 0;
}

.cert-requirements {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.15);
    margin-bottom: 40px;
}

.cert-requirements h3 {
    font-size: 1.8rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.req-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    border-left: 4px solid #1976d2;
}

.req-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.req-item p {
    font-size: 1.05rem;
    color: #1565c0;
    line-height: 1.7;
    margin: 0;
}

.expert-recommendation {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #ff9800;
}

.expert-badge {
    font-size: 3rem;
    flex-shrink: 0;
}

.expert-text h4 {
    font-size: 1.4rem;
    color: #e65100;
    margin-bottom: 10px;
    font-weight: 700;
}

.expert-text p {
    font-size: 1.05rem;
    color: #f57c00;
    line-height: 1.7;
    margin: 0;
}

.panaceo-badge {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #4caf50;
    margin-top: 40px;
}

.panaceo-badge h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.panaceo-badge p {
    font-size: 1.1rem;
    color: #388e3c;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.zeolite-cta-section {
    padding: 100px 0;
    background: #e1f2e1;
    position: relative;
    overflow: hidden;
}

.zeolite-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolite-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.zeolite-cta-content h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 700;
}

.zeolite-cta-content p {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-zeolite-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-zeolite-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Design for Zeolite */
@media (max-width: 1024px) {
    .intro-content-zeolite {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Formation Story - Horizontal Scroll */
    .zeolite-formation-section .formation-story,
    .formation-story {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: row !important;
    }

    .formation-story::-webkit-scrollbar {
        height: 8px;
    }

    .formation-story::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .formation-story::-webkit-scrollbar-thumb {
        background: #78909c;
        border-radius: 10px;
    }

    .formation-story::-webkit-scrollbar-thumb:hover {
        background: #607d8b;
    }

    .formation-step {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .formation-arrow {
        flex: 0 0 40px;
        scroll-snap-align: start;
        align-self: center;
    }

    /* Discovery Intro - Normal Display */
    .discovery-intro {
        text-align: center;
        margin-bottom: 50px;
    }

    .discovery-intro h2 {
        font-size: 2.8rem;
        color: #37474f;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .discovery-intro p {
        font-size: 1.2rem;
        color: #546e7a;
        line-height: 1.8;
    }

    /* Discovery Timeline - Horizontal Scroll */
    .discovery-timeline-wrapper {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: row !important;
    }

    .discovery-timeline-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .discovery-timeline-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .discovery-timeline-wrapper::-webkit-scrollbar-thumb {
        background: #78909c;
        border-radius: 10px;
    }

    .discovery-timeline-wrapper::-webkit-scrollbar-thumb:hover {
        background: #607d8b;
    }

    .discovery-timeline-wrapper .timeline-item {
        flex: 0 0 350px;
        scroll-snap-align: start;
        margin-bottom: 0;
    }

    /* Applications Grid - Horizontal Scroll */
    .zeolite-applications-section .applications-grid,
    .applications-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .applications-grid::-webkit-scrollbar {
        height: 8px;
    }

    .applications-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .applications-grid::-webkit-scrollbar-thumb {
        background: #78909c;
        border-radius: 10px;
    }

    .applications-grid::-webkit-scrollbar-thumb:hover {
        background: #607d8b;
    }

    .application-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Detox Mechanism - Horizontal Scroll */
    .zeolite-detox-section .detox-mechanism,
    .detox-mechanism {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 30px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .detox-mechanism::-webkit-scrollbar {
        height: 8px;
    }

    .detox-mechanism::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .detox-mechanism::-webkit-scrollbar-thumb {
        background: #00897b;
        border-radius: 10px;
    }

    .detox-mechanism::-webkit-scrollbar-thumb:hover {
        background: #00796b;
    }

    .mechanism-card-zeolite {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    /* Comparison Grid - Horizontal Scroll */
    .zeolite-comparison-section .comparison-grid,
    .comparison-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 30px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .comparison-grid::-webkit-scrollbar {
        height: 8px;
    }

    .comparison-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .comparison-grid::-webkit-scrollbar-thumb {
        background: #78909c;
        border-radius: 10px;
    }

    .comparison-grid::-webkit-scrollbar-thumb:hover {
        background: #607d8b;
    }

    .comparison-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }

    /* Action Buttons Grid - Horizontal Scroll */
    .zeolite-actions-section .action-buttons-grid,
    .action-buttons-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 30px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .action-buttons-grid::-webkit-scrollbar {
        height: 8px;
    }

    .action-buttons-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .action-buttons-grid::-webkit-scrollbar-thumb {
        background: #78909c;
        border-radius: 10px;
    }

    .action-buttons-grid::-webkit-scrollbar-thumb:hover {
        background: #607d8b;
    }

    .action-button-zeolite {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }

    /* Certification Requirements Grid - Horizontal Scroll */
    .cert-requirements .req-grid,
    .req-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .req-grid::-webkit-scrollbar {
        height: 8px;
    }

    .req-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .req-grid::-webkit-scrollbar-thumb {
        background: #1976d2;
        border-radius: 10px;
    }

    .req-grid::-webkit-scrollbar-thumb:hover {
        background: #1565c0;
    }

    .req-item {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }
}

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

    .hero-content-zeolite h2 {
        font-size: 1.3rem;
    }

    .hero-content-zeolite p {
        font-size: 1rem;
    }

    .aluminum-question {
        flex-direction: column;
        text-align: center;
    }

    .clinical-proof {
        flex-direction: column;
        text-align: center;
    }

    .expert-recommendation {
        flex-direction: column;
        text-align: center;
    }
}

/* ================== KAKO ZEOLIT DELUJE PAGE STYLES ================== */

/* Hero Section */
.zeolit-deluje-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #b2dfdb 0%, #80cbc4 50%, #4db6ac 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zeolit-deluje-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.hero-overlay-zeolit-deluje {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(178, 223, 219, 0.3), rgba(128, 203, 196, 0.5));
}

.hero-content-zeolit-deluje {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #004d40;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-zeolit-deluje h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 77, 64, 0.1);
}

.hero-content-zeolit-deluje h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #00695c;
}

.hero-content-zeolit-deluje p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #00796b;
}

/* Intro Section */
.zeolit-deluje-intro-section {
    padding: 100px 0;
    background: #fff;
}

.intro-content-zeolit-deluje {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text-zeolit-deluje h2 {
    font-size: 2.5rem;
    color: #004d40;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-zeolit-deluje p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #00796b;
    margin-bottom: 20px;
}

.intro-text-zeolit-deluje strong {
    color: #004d40;
    font-weight: 600;
}

.intro-image-zeolit-deluje img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 150, 136, 0.2);
    transition: transform 0.3s ease;
}

.intro-image-zeolit-deluje img:hover {
    transform: scale(1.02);
}

/* Ion Exchange Section */
.ion-exchange-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e0f2f1, #b2dfdb);
    position: relative;
    overflow: hidden;
}

.ion-exchange-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.ion-exchange-section .container {
    position: relative;
    z-index: 2;
}

.ion-exchange-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
    gap: 15px;
}

.process-step-deluje {
    flex: 1;
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 150, 136, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #00897b;
}

.process-step-deluje:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 150, 136, 0.25);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00897b, #26a69a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step-deluje h3 {
    font-size: 1.4rem;
    color: #004d40;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step-deluje p {
    font-size: 1rem;
    color: #00796b;
    line-height: 1.7;
}

.process-arrow-deluje {
    font-size: 2.5rem;
    color: #26a69a;
    font-weight: 700;
    flex-shrink: 0;
}

.selective-binding-note {
    display: flex;
    gap: 25px;
    align-items: center;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 150, 136, 0.15);
    border-left: 6px solid #00897b;
    margin-top: 50px;
}

.note-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.selective-binding-note p {
    font-size: 1.15rem;
    color: #004d40;
    line-height: 1.8;
    margin: 0;
}

/* Toxins Bound Section */
.toxins-bound-section {
    padding: 100px 0;
    background: #fff;
}

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

.toxin-card {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #ef5350;
}

.toxin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.25);
    border-color: #e53935;
}

.toxin-symbol {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.toxin-card h3 {
    font-size: 1.5rem;
    color: #c62828;
    margin-bottom: 15px;
    font-weight: 600;
}

.toxin-card p {
    font-size: 1rem;
    color: #d32f2f;
    line-height: 1.7;
}

.safety-note {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #4caf50;
    margin-top: 50px;
}

.safety-note h3 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.safety-note p {
    font-size: 1.2rem;
    color: #388e3c;
    line-height: 1.8;
    margin: 0;
}

/* Benefits Deluje Section */
.zeolit-benefits-deluje-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f1f8e9, #dcedc8);
    position: relative;
    overflow: hidden;
}

.zeolit-benefits-deluje-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolit-benefits-deluje-section .container {
    position: relative;
    z-index: 2;
}

.benefits-grid-deluje {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.benefit-card-deluje {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(139, 195, 74, 0.15);
    transition: all 0.3s ease;
    border-bottom: 4px solid #7cb342;
}

.benefit-card-deluje:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(139, 195, 74, 0.25);
    border-bottom-color: #689f38;
}

.benefit-icon-deluje {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-card-deluje h3 {
    font-size: 1.5rem;
    color: #558b2f;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card-deluje p {
    font-size: 1.05rem;
    color: #689f38;
    line-height: 1.7;
}

/* Clinical Study Deluje Section */
.clinical-study-deluje-section {
    padding: 100px 0;
    background: #fff;
}

.study-details-deluje {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 60px;
}

.study-params-deluje h3 {
    font-size: 2rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 700;
}

.param-grid-deluje {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.param-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.15);
    border: 2px solid #42a5f5;
}

.param-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 10px;
}

.param-icon-study {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.param-box p {
    font-size: 1.1rem;
    color: #1976d2;
    margin: 0;
    font-weight: 500;
}

.study-results-deluje h3 {
    font-size: 2rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 700;
}

.results-highlight {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.zonulin-box {
    flex: 1;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #ff9800;
}

.zonulin-box h4 {
    font-size: 1.3rem;
    color: #e65100;
    margin-bottom: 10px;
    font-weight: 700;
}

.zonulin-box p {
    font-size: 1rem;
    color: #f57c00;
    line-height: 1.7;
    margin: 0;
}

.result-arrow {
    font-size: 3rem;
    font-weight: 700;
    color: #4caf50;
    flex-shrink: 0;
}

.result-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px 30px;
    border-radius: 12px;
    border: 3px solid #4caf50;
    min-width: 150px;
    flex-shrink: 0;
}

.arrow-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #2e7d32;
    text-align: center;
}

.improvement-box {
    flex: 1;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #4caf50;
}

.improvement-box h4 {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 10px;
    font-weight: 700;
}

.improvement-box p {
    font-size: 1rem;
    color: #388e3c;
    line-height: 1.7;
    margin: 0;
}

.study-conclusion-deluje {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #1976d2;
}

.study-conclusion-deluje p {
    font-size: 1.2rem;
    color: #1565c0;
    line-height: 1.8;
    margin: 0;
}

/* Protective Mechanism Section */
.protective-mechanism-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fce4ec, #f8bbd0);
    position: relative;
    overflow: hidden;
}

.protective-mechanism-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.protective-mechanism-section .container {
    position: relative;
    z-index: 2;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.protection-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease;
    border-left: 6px solid #e91e63;
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(233, 30, 99, 0.25);
}

.protection-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #ec407a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.protection-card h3 {
    font-size: 1.5rem;
    color: #c2185b;
    margin-bottom: 15px;
    font-weight: 600;
}

.protection-card p {
    font-size: 1.05rem;
    color: #d81b60;
    line-height: 1.7;
}

/* Safety Section Deluje */
.safety-section-deluje {
    padding: 100px 0;
    background: #fff;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.safety-stat {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.15);
    border-top: 4px solid #4caf50;
}

.stat-icon-deluje {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.safety-stat p {
    font-size: 1.1rem;
    color: #388e3c;
    margin: 0;
    font-weight: 500;
}

.safety-note-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #ff9800;
    margin-top: 40px;
}

.safety-note-box h3 {
    font-size: 2rem;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 700;
}

.safety-note-box p {
    font-size: 1.15rem;
    color: #f57c00;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section Deluje */
.zeolit-deluje-cta-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #b2dfdb, #80cbc4);
    position: relative;
    overflow: hidden;
}

.zeolit-deluje-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.zeolit-deluje-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.zeolit-deluje-cta-content h2 {
    font-size: 2.8rem;
    color: #004d40;
    margin-bottom: 15px;
    font-weight: 700;
}

.zeolit-deluje-cta-content > p {
    font-size: 1.2rem;
    color: #00695c;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-primary-deluje,
.btn-secondary-deluje {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-deluje {
    background: linear-gradient(135deg, #00897b, #26a69a);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

.btn-primary-deluje:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 137, 123, 0.4);
    background: linear-gradient(135deg, #00695c, #00897b);
}

.btn-secondary-deluje {
    background: white;
    color: #00897b;
    border: 2px solid #00897b;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.2);
}

.btn-secondary-deluje:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 137, 123, 0.3);
    background: #e0f2f1;
}

.btn-shop-deluje {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.btn-shop-deluje:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content-zeolit-deluje {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ion-exchange-process {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .ion-exchange-process::-webkit-scrollbar {
        height: 8px;
    }

    .ion-exchange-process::-webkit-scrollbar-track {
        background: #e0f2f1;
        border-radius: 10px;
    }

    .ion-exchange-process::-webkit-scrollbar-thumb {
        background: #26a69a;
        border-radius: 10px;
    }

    .ion-exchange-process::-webkit-scrollbar-thumb:hover {
        background: #00897b;
    }

    .process-step-deluje {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .process-arrow-deluje {
        flex: 0 0 auto;
        transform: none;
        margin: 0;
    }

    .toxins-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .toxins-grid::-webkit-scrollbar {
        height: 8px;
    }

    .toxins-grid::-webkit-scrollbar-track {
        background: #ffebee;
        border-radius: 10px;
    }

    .toxins-grid::-webkit-scrollbar-thumb {
        background: #e57373;
        border-radius: 10px;
    }

    .toxins-grid::-webkit-scrollbar-thumb:hover {
        background: #ef5350;
    }

    .toxin-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .benefits-grid-deluje {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 30px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .benefits-grid-deluje::-webkit-scrollbar {
        height: 8px;
    }

    .benefits-grid-deluje::-webkit-scrollbar-track {
        background: #e0f2f1;
        border-radius: 10px;
    }

    .benefits-grid-deluje::-webkit-scrollbar-thumb {
        background: #26a69a;
        border-radius: 10px;
    }

    .benefits-grid-deluje::-webkit-scrollbar-thumb:hover {
        background: #00897b;
    }

    .benefit-card-deluje {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }

    .param-grid-deluje {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .param-box {
        width: 100% !important;
    }

    .study-details-deluje {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .protection-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 25px 20px !important;
        margin: 0 -25px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .protection-grid::-webkit-scrollbar {
        height: 8px;
    }

    .protection-grid::-webkit-scrollbar-track {
        background: #fce4ec;
        border-radius: 10px;
    }

    .protection-grid::-webkit-scrollbar-thumb {
        background: #e91e63;
        border-radius: 10px;
    }

    .protection-grid::-webkit-scrollbar-thumb:hover {
        background: #c2185b;
    }

    .protection-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .safety-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 25px 20px !important;
        margin: 0 -25px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .safety-grid::-webkit-scrollbar {
        height: 8px;
    }

    .safety-grid::-webkit-scrollbar-track {
        background: #e8f5e9;
        border-radius: 10px;
    }

    .safety-grid::-webkit-scrollbar-thumb {
        background: #4caf50;
        border-radius: 10px;
    }

    .safety-grid::-webkit-scrollbar-thumb:hover {
        background: #388e3c;
    }

    .safety-stat {
        flex: 0 0 250px;
        scroll-snap-align: start;
    }

    .results-highlight {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .zonulin-box,
    .improvement-box {
        width: 100% !important;
        flex: none !important;
    }

    .cta-buttons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content-zeolit-deluje h1 {
        font-size: 2.5rem;
    }

    .hero-content-zeolit-deluje h2 {
        font-size: 1.3rem;
    }

    .hero-content-zeolit-deluje p {
        font-size: 1rem;
    }

    .toxins-grid {
        gap: 20px !important;
    }

    .toxin-card {
        flex: 0 0 250px;
    }

    .toxin-card h3 {
        font-size: 1.2rem;
    }

    .toxin-card p {
        font-size: 0.9rem;
    }

    .benefits-grid-deluje {
        gap: 25px !important;
    }

    .benefit-card-deluje {
        flex: 0 0 280px;
    }

    .benefit-card-deluje h3 {
        font-size: 1.2rem;
    }

    .benefit-card-deluje p {
        font-size: 0.9rem;
    }

    .param-grid-deluje {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .param-box {
        width: 100% !important;
        min-height: 120px !important;
    }

    .results-highlight {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .zonulin-box,
    .improvement-box {
        width: 100% !important;
        flex: none !important;
    }

    .zonulin-box h4,
    .improvement-box h4 {
        font-size: 1.2rem;
    }

    .zonulin-box p,
    .improvement-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .safety-grid {
        gap: 20px !important;
    }

    .safety-stat {
        flex: 0 0 230px;
    }

    .selective-binding-note {
        flex-direction: column;
        text-align: center;
    }

    .process-step-deluje {
        flex: 0 0 260px;
    }

    .process-step-deluje h3 {
        font-size: 1.2rem;
    }

    .process-step-deluje p {
        font-size: 0.95rem;
    }
}

/* ================== KAKO KORISTITI ZEOLIT PAGE STYLES ================== */

/* Hero Section */
.koristiti-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 50%, #64b5f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.koristiti-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.hero-overlay-koristiti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(187, 222, 251, 0.3), rgba(144, 202, 249, 0.5));
}

.hero-content-koristiti {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #0d47a1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content-koristiti h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(13, 71, 161, 0.1);
}

.hero-content-koristiti h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1565c0;
}

.hero-content-koristiti p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1976d2;
}

/* Intro Section */
.koristiti-intro-section {
    padding: 100px 0;
    background: #fff;
}

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

.intro-text-koristiti h2 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-koristiti p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1976d2;
    margin-bottom: 20px;
}

.intro-text-koristiti strong {
    color: #0d47a1;
    font-weight: 600;
}

.intro-image-koristiti img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.2);
    transition: transform 0.3s ease;
}

.intro-image-koristiti img:hover {
    transform: scale(1.02);
}

/* Dosage Section */
.dosage-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
    position: relative;
    overflow: hidden;
}

.dosage-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.dosage-section .container {
    position: relative;
    z-index: 2;
}

.dosage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.dosage-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #1976d2;
}

.dosage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(33, 150, 243, 0.25);
}

.dosage-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.dosage-card h3 {
    font-size: 1.6rem;
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 600;
}

.dosage-card p {
    font-size: 1.05rem;
    color: #1976d2;
    line-height: 1.7;
}

/* Program Section */
.program-section {
    padding: 100px 0;
    background: #fff;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.program-benefits,
.program-timeline {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.15);
    border-left: 6px solid #4caf50;
}

.program-benefits h3,
.program-timeline h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 25px;
    font-weight: 700;
}

.benefit-list-koristiti {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item-koristiti {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-mark {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item-koristiti p {
    font-size: 1.05rem;
    color: #2e7d32;
    line-height: 1.7;
    margin: 0;
}

.program-timeline p {
    font-size: 1.1rem;
    color: #388e3c;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-timeline ul {
    list-style: none;
    padding: 0;
}

.program-timeline li {
    font-size: 1.05rem;
    color: #2e7d32;
    line-height: 1.9;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.program-timeline li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Who Benefits Section */
.who-benefits-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff3e0, #ffe0b2);
    position: relative;
    overflow: hidden;
}

.who-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.who-benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.group-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.15);
    transition: all 0.3s ease;
    border-bottom: 4px solid #ff9800;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.25);
}

.group-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.group-card h3 {
    font-size: 1.4rem;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 600;
}

.group-card p {
    font-size: 1rem;
    color: #f57c00;
    line-height: 1.7;
}

/* Specialized Section */
.specialized-section {
    padding: 100px 0;
    background: #fff;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.specialized-card {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(156, 39, 176, 0.15);
    transition: all 0.3s ease;
    border-left: 6px solid #9c27b0;
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(156, 39, 176, 0.25);
}

.specialized-card h3 {
    font-size: 1.6rem;
    color: #6a1b9a;
    margin-bottom: 20px;
    font-weight: 600;
}

.specialized-card p {
    font-size: 1.05rem;
    color: #7b1fa2;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tip-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #ff9800;
    font-size: 1rem;
    color: #e65100;
    line-height: 1.6;
}

/* Product Guide Section */
.product-guide-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e0f2f1, #b2dfdb);
    position: relative;
    overflow: hidden;
}

.product-guide-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.12) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.product-guide-section .container {
    position: relative;
    z-index: 2;
}

.products-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 150, 136, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #00897b;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 150, 136, 0.25);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-header h3 {
    font-size: 1.6rem;
    color: #00695c;
    font-weight: 700;
    margin: 0;
}

.product-badge {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-purpose {
    font-size: 1.1rem;
    color: #00796b;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.product-box li {
    font-size: 1rem;
    color: #00897b;
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.product-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Safety Info Section */
.safety-info-section {
    padding: 100px 0;
    background: #fff;
}

.safety-grid-koristiti {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.safety-card-koristiti {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.15);
    transition: all 0.3s ease;
    border-bottom: 4px solid #4caf50;
}

.safety-card-koristiti:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(76, 175, 80, 0.25);
}

.safety-icon-koristiti {
    font-size: 4rem;
    margin-bottom: 20px;
}

.safety-card-koristiti h3 {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 600;
}

.safety-card-koristiti p {
    font-size: 1.05rem;
    color: #388e3c;
    line-height: 1.7;
}

/* External Use Section */
.external-use-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fce4ec, #f8bbd0);
    position: relative;
    overflow: hidden;
}

.external-use-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.external-use-section .container {
    position: relative;
    z-index: 2;
}

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

.external-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid #e91e63;
}

.external-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.25);
}

.external-card h3 {
    font-size: 1.5rem;
    color: #c2185b;
    margin-bottom: 15px;
    font-weight: 600;
}

.external-card p {
    font-size: 1rem;
    color: #d81b60;
    line-height: 1.7;
}

/* CTA Section */
.koristiti-cta-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #bbdefb, #90caf9);
    position: relative;
    overflow: hidden;
}

.koristiti-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.koristiti-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.koristiti-cta-content h2 {
    font-size: 2.8rem;
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
}

.koristiti-cta-content > p {
    font-size: 1.2rem;
    color: #1565c0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons-koristiti {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary-koristiti,
.btn-secondary-koristiti {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-koristiti {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.btn-primary-koristiti:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.btn-secondary-koristiti {
    background: white;
    color: #1976d2;
    border: 2px solid #1976d2;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
}

.btn-secondary-koristiti:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(25, 118, 210, 0.3);
    background: #e3f2fd;
}

.btn-shop-koristiti {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.btn-shop-koristiti:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #1b5e20, #4caf50);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content-koristiti {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dosage-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 25px 20px !important;
        margin: 0 -25px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .dosage-grid::-webkit-scrollbar {
        height: 8px;
    }

    .dosage-grid::-webkit-scrollbar-track {
        background: #e3f2fd;
        border-radius: 10px;
    }

    .dosage-grid::-webkit-scrollbar-thumb {
        background: #1976d2;
        border-radius: 10px;
    }

    .dosage-grid::-webkit-scrollbar-thumb:hover {
        background: #0d47a1;
    }

    .dosage-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .program-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-groups {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 25px 20px !important;
        margin: 0 -25px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .benefits-groups::-webkit-scrollbar {
        height: 8px;
    }

    .benefits-groups::-webkit-scrollbar-track {
        background: #fff3e0;
        border-radius: 10px;
    }

    .benefits-groups::-webkit-scrollbar-thumb {
        background: #ff9800;
        border-radius: 10px;
    }

    .benefits-groups::-webkit-scrollbar-thumb:hover {
        background: #f57c00;
    }

    .group-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .specialized-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 25px 20px !important;
        margin: 0 -25px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .specialized-grid::-webkit-scrollbar {
        height: 8px;
    }

    .specialized-grid::-webkit-scrollbar-track {
        background: #f3e5f5;
        border-radius: 10px;
    }

    .specialized-grid::-webkit-scrollbar-thumb {
        background: #9c27b0;
        border-radius: 10px;
    }

    .specialized-grid::-webkit-scrollbar-thumb:hover {
        background: #7b1fa2;
    }

    .specialized-card {
        flex: 0 0 350px;
        scroll-snap-align: start;
    }

    .products-comparison {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 20px 20px 20px !important;
        margin: 0 -20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .products-comparison::-webkit-scrollbar {
        height: 8px;
    }

    .products-comparison::-webkit-scrollbar-track {
        background: #e3f2fd;
        border-radius: 10px;
    }

    .products-comparison::-webkit-scrollbar-thumb {
        background: #1976d2;
        border-radius: 10px;
    }

    .products-comparison::-webkit-scrollbar-thumb:hover {
        background: #0d47a1;
    }

    .product-box {
        flex: 0 0 82vw;
        max-width: 380px;
        scroll-snap-align: start;
        min-width: 300px;
    }

    .safety-grid-koristiti {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 25px 20px !important;
        margin: 0 -25px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .safety-grid-koristiti::-webkit-scrollbar {
        height: 8px;
    }

    .safety-grid-koristiti::-webkit-scrollbar-track {
        background: #e8f5e9;
        border-radius: 10px;
    }

    .safety-grid-koristiti::-webkit-scrollbar-thumb {
        background: #4caf50;
        border-radius: 10px;
    }

    .safety-grid-koristiti::-webkit-scrollbar-thumb:hover {
        background: #388e3c;
    }

    .safety-card-koristiti {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .external-products {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-buttons-koristiti {
        grid-template-columns: 1fr;
    }
}

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

    .hero-content-koristiti h2 {
        font-size: 1.3rem;
    }

    .hero-content-koristiti p {
        font-size: 1rem;
    }
}
/* === 3 KARTICE - Provereni, Prirodni, Nega === */
.benefits-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-subtitle {
    font-size: 1.1rem;
    color: #006837;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-text {
    color: #003D5C;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .benefit-card {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 30px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 15px;
    }

    .benefit-card {
        padding: 15px 10px;
    }

    .benefit-icon svg {
        width: 45px;
        height: 45px;
    }

    .benefit-title {
        font-size: 8px !important;
        margin-bottom: 6px;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    .benefit-subtitle {
        font-size: 8px !important;
        line-height: 1.2 !important;
        margin-bottom: 0;
    }
}
/* ========================================
   PARTNER BRANDS SECTION
   ======================================== */
.partner-brands-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partner-brands-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,61,92,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

@keyframes swipeHint {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) translateX(-5px);
    }
}

.brands-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
    padding: 20px 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,61,92,0.3) rgba(0,61,92,0.1);
    position: relative;
    z-index: 1;
}

.brands-grid::-webkit-scrollbar {
    height: 8px;
}

.brands-grid::-webkit-scrollbar-track {
    background: rgba(0,61,92,0.1);
    border-radius: 10px;
}

.brands-grid::-webkit-scrollbar-thumb {
    background: rgba(0,61,92,0.4);
    border-radius: 10px;
}

.brands-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0,61,92,0.6);
}

/* Add visible scroll indicator track for desktop */
.brands-grid::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(0,61,92,0.15);
    border-radius: 10px;
    pointer-events: none;
}

/* Add swipe indicator for desktop */
.brands-grid::before {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: rgba(0,61,92,0.3);
    pointer-events: none;
    animation: swipeHint 2s ease-in-out infinite;
    z-index: 10;
}

.brand-logo-card {
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
}

.brand-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,61,92,0.05), transparent);
    transition: left 0.6s ease;
}

.brand-logo-card:hover::before {
    left: 100%;
}

.brand-logo-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 61, 92, 0.2);
}

.brand-logo-card:nth-child(1):hover {
    animation: rotateWiggle 0.6s ease;
}

.brand-logo-card:nth-child(2):hover {
    animation: bounceUp 0.6s ease;
}

.brand-logo-card:nth-child(3):hover {
    animation: scaleRotate 0.6s ease;
}

.brand-logo-card:nth-child(4):hover {
    animation: swingRotate 0.6s ease;
}

@keyframes rotateWiggle {
    0%, 100% { transform: translateY(-15px) scale(1.08) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.08) rotate(-5deg); }
    75% { transform: translateY(-15px) scale(1.08) rotate(5deg); }
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(-15px) scale(1.08); }
    50% { transform: translateY(-25px) scale(1.1); }
}

@keyframes scaleRotate {
    0%, 100% { transform: translateY(-15px) scale(1.08) rotate(0deg); }
    50% { transform: translateY(-15px) scale(1.15) rotate(360deg); }
}

@keyframes swingRotate {
    0%, 100% { transform: translateY(-15px) scale(1.08) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.08) rotate(-8deg); }
    75% { transform: translateY(-15px) scale(1.08) rotate(8deg); }
}

.brand-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.brand-logo-card:hover img {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 1200px) {
    .brands-grid {
        gap: 25px;
        padding: 20px 25px;
    }

    .brand-logo-card {
        flex: 0 0 200px;
        min-width: 200px;
        max-width: 200px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .partner-brands-section {
        padding: 40px 0;
    }

    .partner-brands-section .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .partner-brands-section .section-header p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .brands-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        padding: 10px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0,61,92,0.3) transparent;
    }

    .brands-grid::-webkit-scrollbar {
        height: 6px;
    }

    .brands-grid::-webkit-scrollbar-track {
        background: rgba(0,61,92,0.1);
        border-radius: 10px;
    }

    .brands-grid::-webkit-scrollbar-thumb {
        background: rgba(0,61,92,0.4);
        border-radius: 10px;
    }

    .brands-grid::-webkit-scrollbar-thumb:hover {
        background: rgba(0,61,92,0.6);
    }

    /* Add visible scroll indicator track */
    .brands-grid::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 20px;
        right: 20px;
        height: 3px;
        background: rgba(0,61,92,0.15);
        border-radius: 10px;
        pointer-events: none;
    }

    /* Add swipe indicator */
    .brands-grid::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(0,61,92,0.4);
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
        z-index: 10;
    }

    .partner-brands-section {
        position: relative;
    }

    .brand-logo-card {
        flex: 0 0 180px;
        min-width: 180px;
        max-width: 180px;
        height: 120px;
        scroll-snap-align: center;
        padding: 20px;
    }

    .brand-logo-card:first-child {
        margin-left: 10px;
    }

    .brand-logo-card:last-child {
        margin-right: 10px;
    }
}

/* Double logo card (Novalou + Novatopia) */
.brand-logo-card-double {
    height: 200px !important;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    justify-content: center;
}

.brand-logo-card-double img {
    width: 100% !important;
    height: 80px !important;
    max-height: 80px !important;
    min-height: 80px !important;
    object-fit: contain !important;
    flex-shrink: 0;
}

.brand-logo-card-double img:first-child {
    margin-bottom: 0;
}

.brand-logo-card-double img:last-child {
    height: 80px !important;
    max-height: 80px !important;
    min-height: 80px !important;
}

@media (max-width: 768px) {
    .brand-logo-card-double {
        height: 180px !important;
        gap: 8px;
        padding: 18px 15px;
    }

    .brand-logo-card-double img {
        height: 70px !important;
        max-height: 70px !important;
        min-height: 70px !important;
    }

    .brand-logo-card-double img:last-child {
        height: 70px !important;
        max-height: 70px !important;
        min-height: 70px !important;
    }
}

/* Novatopia logo - make it visually same size as others */
.brand-logo-card img[alt="Novatopia"] {
    height: 100% !important;
    width: 100% !important;
    max-height: 140px !important;
    padding: 0;
    object-fit: contain;
    transform: scale(6.0);
}

@media (max-width: 768px) {
    .brand-logo-card img[alt="Novatopia"] {
        max-height: 120px !important;
        transform: scale(5.5);
    }
}

/* Novatopia in double card - normal size */
.brand-logo-card-double img[alt="Novatopia-dual"] {
    height: 80px !important;
    max-height: 80px !important;
    min-height: 80px !important;
    width: 100% !important;
    object-fit: contain !important;
    transform: scale(1) !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .brand-logo-card-double img[alt="Novatopia-dual"] {
        height: 70px !important;
        max-height: 70px !important;
        min-height: 70px !important;
    }
}

/* Novalou logo fallback */
.logo-text-fallback {
    display: none;
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    text-transform: lowercase;
    font-family: 'Fredoka', sans-serif;
}

.brand-logo-card.text-logo .logo-text-fallback {
    display: block;
}

.brand-logo-card.text-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   RONTAMIL PAGE STYLES
   ======================================== */

/* Rontamil Hero Section */
.rontamil-hero {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.rontamil-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.rontamil-hero-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.rontamil-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.rontamil-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Breastfeeding Banner */
.breastfeeding-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 40px 0;
    margin: 40px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
    border-left: 5px solid #2196f3;
}

.banner-icon {
    flex-shrink: 0;
}

.banner-text h3 {
    color: #1976d2;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.banner-text p {
    color: #424242;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.banner-text strong {
    color: #1976d2;
    font-weight: 600;
}

/* Products Section */
.rontamil-products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.rontamil-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.rontamil-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.rontamil-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
}

.rontamil-product-card .product-image {
    height: 280px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rontamil-product-card .product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.rontamil-product-card .product-info {
    padding: 25px;
}

.rontamil-product-card h3 {
    color: #1976d2;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-age {
    color: #757575;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}

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

.product-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #616161;
    font-size: 15px;
    line-height: 1.5;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: bold;
    font-size: 18px;
}

/* Standards Section */
.rontamil-standards-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.rontamil-standards-section h2 {
    color: #1976d2;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.standard-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.standard-card:hover {
    background: #e3f2fd;
    transform: scale(1.05);
}

.standard-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.standard-card h4 {
    color: #1976d2;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.standard-card p {
    color: #616161;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .rontamil-hero {
        padding: 50px 0;
    }

    .rontamil-hero-logo {
        max-width: 250px;
    }

    .rontamil-subtitle {
        font-size: 22px;
    }

    .rontamil-description {
        font-size: 16px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .banner-text h3 {
        font-size: 20px;
    }

    .banner-text p {
        font-size: 14px;
    }

    /* Rontamil Products Grid - Horizontal Scroll */
    .rontamil-products-section .rontamil-products-grid,
    .rontamil-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 25px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        margin-top: 50px !important;
    }

    .rontamil-products-grid::-webkit-scrollbar {
        height: 8px;
    }

    .rontamil-products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .rontamil-products-grid::-webkit-scrollbar-thumb {
        background: #1976d2; /* Blue theme for Rontamil */
        border-radius: 10px;
    }

    .rontamil-products-grid::-webkit-scrollbar-thumb:hover {
        background: #1565c0;
    }

    .rontamil-product-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .rontamil-standards-section h2 {
        font-size: 28px;
    }

    /* Standards Grid - Horizontal Scroll */
    .rontamil-standards-section .standards-grid,
    .standards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        max-width: unset !important;
    }

    .standards-grid::-webkit-scrollbar {
        height: 8px;
    }

    .standards-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .standards-grid::-webkit-scrollbar-thumb {
        background: #1976d2; /* Blue theme for Rontamil */
        border-radius: 10px;
    }

    .standards-grid::-webkit-scrollbar-thumb:hover {
        background: #1565c0;
    }

    .standard-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
    }
}

/* ================================ */
/* Desktop/Mobile Header Toggle     */
/* ================================ */

/* Show desktop header by default, hide mobile */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* On mobile screens, hide desktop and show mobile header */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* ================================ */
/* Mobile Header Styles             */
/* ================================ */

.mobile-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.mobile-header-top {
    padding: 15px 0;
}

.mobile-header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-header-left {
    flex: 1;
}

.mobile-header-left .logo-container a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-header-left .logo-image {
    height: 50px;
    width: auto;
}

.mobile-header-left .logo-title {
    font-size: 20px;
}

.mobile-header-left .logo-subtitle {
    font-size: 9px;
}

.mobile-header-right {
    display: flex;
    align-items: center;
}

.mobile-header-right .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Search Bar */
.mobile-search-bar {
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper svg {
    position: absolute;
    left: 15px;
    color: #003D5C;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #1b3b72;
}

/* Hamburger Menu Button */
.hamburger-menu {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1b3b72;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: #5a8a5a;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Mobile Menu Content Panel */
.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #003D5C;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    z-index: 1001;
}

.close-menu:hover {
    color: #1b3b72;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 0;
}

.mobile-nav > a {
    display: block;
    padding: 15px 25px;
    color: #1b3b72;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.mobile-nav > a:hover {
    background: #f8fdf8;
    padding-left: 30px;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-toggle {
    width: 100%;
    padding: 15px 25px;
    background: none;
    border: none;
    color: #1b3b72;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle span {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.mobile-dropdown.active .mobile-dropdown-toggle span {
    transform: rotate(180deg);
}

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

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

.mobile-dropdown-content > a {
    display: block;
    padding: 12px 25px 12px 40px;
    color: #003D5C;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.2s ease;
}

.mobile-dropdown-content > a:hover {
    background: #fff;
    padding-left: 45px;
}

/* Mobile Submenu */
.mobile-submenu-item {
    border-bottom: 1px solid #e8e8e8;
}

.mobile-submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-submenu-link {
    flex: 1;
    padding: 12px 10px 12px 40px;
    color: #003D5C;
    font-size: 15px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    background: #f8fdf8;
    color: #1b3b72;
}

.mobile-submenu-toggle {
    padding: 12px 25px;
    background: none;
    border: none;
    color: #003D5C;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-submenu-toggle span {
    transition: transform 0.3s ease;
    font-size: 10px;
}

.mobile-submenu-item.active .mobile-submenu-toggle span {
    transform: rotate(180deg);
}

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

.mobile-submenu-item.active .mobile-submenu-content {
    max-height: 500px;
}

.mobile-submenu-content a {
    display: block;
    padding: 10px 25px 10px 60px;
    color: #003D5C;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.mobile-submenu-content a:hover {
    background: #f8fdf8;
    color: #1b3b72;
    padding-left: 65px;
}


/* =============================================
   NOVATOPIA PAGE STYLES
   ============================================= */

/* Audience Icons Section */
.audience-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
}

.audience-icon {
    text-align: center;
}

.audience-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.audience-icon-circle:hover {
    transform: scale(1.05);
}

.audience-icon p {
    font-size: 18px;
    color: #003D5C;
    font-weight: 500;
}

/* Ingredients Grid Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ingredient-card {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    font-size: 20px;
    color: #2d5a2d;
    margin-bottom: 12px;
    font-weight: 600;
}

.ingredient-card p {
    font-size: 15px;
    color: #003D5C;
    line-height: 1.6;
}

/* Novatopia Products Grid */
.novatopia-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.novatopia-product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.novatopia-product-card:hover {
    transform: translateY(-5px);
}

.novatopia-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.novatopia-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.novatopia-product-info {
    padding: 20px;
    text-align: center;
}

.novatopia-product-info h3 {
    font-size: 20px;
    color: #003D5C;
    margin-bottom: 10px;
    font-weight: 600;
}

.novatopia-product-price {
    font-size: 22px;
    color: #2d5a2d;
    font-weight: 700;
    margin-bottom: 15px;
}

.novatopia-product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4a6b4a 0%, #2d5a2d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.novatopia-product-btn:hover {
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3a1a 100%);
    transform: translateY(-2px);
}

/* Benefits Grid (Bez kompromisa) */
.benefit-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 18px;
    color: #2d5a2d;
    font-weight: 600;
}

/* Responsive - Mobile Horizontal Scroll */
@media (max-width: 768px) {
    /* Audience Icons - Horizontal Scroll */
    .for-whom-section .audience-icons,
    .audience-icons {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .audience-icons::-webkit-scrollbar {
        height: 8px;
    }

    .audience-icons::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .audience-icons::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .audience-icon {
        flex: 0 0 150px;
        scroll-snap-align: start;
    }

    .audience-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .audience-icon p {
        font-size: 14px;
    }

    /* Ingredients Grid - Horizontal Scroll */
    .ingredients-section .ingredients-grid,
    .ingredients-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .ingredients-grid::-webkit-scrollbar {
        height: 8px;
    }

    .ingredients-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .ingredients-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .ingredient-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
        padding: 20px 15px;
    }

    .ingredient-icon {
        font-size: 36px;
    }

    .ingredient-card h3 {
        font-size: 16px;
    }

    .ingredient-card p {
        font-size: 13px;
    }

    /* Novatopia Products Grid - Horizontal Scroll */
    .novatopia-products-section .novatopia-products-grid,
    .novatopia-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .novatopia-products-grid::-webkit-scrollbar {
        height: 8px;
    }

    .novatopia-products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .novatopia-products-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .novatopia-product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .novatopia-product-image {
        height: 250px;
    }

    /* Benefits Grid - Horizontal Scroll */
    .benefits-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch;
    }

    .benefits-grid::-webkit-scrollbar {
        height: 8px;
    }

    .benefits-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .benefit-item {
        flex: 0 0 200px;
        scroll-snap-align: start;
        padding: 20px 15px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .benefit-item h3 {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    /* Audience Icons - Horizontal Scroll */
    .for-whom-section .audience-icons,
    .audience-icons {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Audience Icons - Smaller on very small screens */
    .audience-icon {
        flex: 0 0 130px;
    }

    .audience-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .audience-icon p {
        font-size: 13px;
    }

    /* Ingredients Grid - Horizontal Scroll */
    .ingredients-section .ingredients-grid,
    .ingredients-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Ingredients Grid - Smaller */
    .ingredient-card {
        flex: 0 0 220px;
        padding: 18px 12px;
    }

    .ingredient-icon {
        font-size: 32px;
    }

    .ingredient-card h3 {
        font-size: 15px;
    }

    .ingredient-card p {
        font-size: 12px;
    }

    /* Novatopia Products Grid - Horizontal Scroll */
    .novatopia-products-section .novatopia-products-grid,
    .novatopia-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Products - Smaller */
    .novatopia-product-card {
        flex: 0 0 260px;
    }

    .novatopia-product-image {
        height: 220px;
    }

    /* Benefits - Smaller */
    .benefit-item {
        flex: 0 0 180px;
        padding: 18px 12px;
    }

    .benefit-icon {
        font-size: 32px;
    }

    .benefit-item h3 {
        font-size: 14px;
    }
}

/* =============================================
   SVAKODNEVNA NEGA PAGE STYLES
   ============================================= */

/* Features Grid Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: #2d5a2d;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    color: #003D5C;
    line-height: 1.6;
}

/* Everyday Products Grid */
.everyday-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.everyday-product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.everyday-product-card:hover {
    transform: translateY(-5px);
}

.everyday-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.everyday-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.everyday-product-info {
    padding: 20px;
    text-align: center;
}

.everyday-product-info h3 {
    font-size: 20px;
    color: #003D5C;
    margin-bottom: 10px;
    font-weight: 600;
}

.everyday-product-price {
    font-size: 22px;
    color: #2d5a2d;
    font-weight: 700;
    margin-bottom: 15px;
}

.everyday-product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4a6b4a 0%, #2d5a2d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.everyday-product-btn:hover {
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3a1a 100%);
    transform: translateY(-2px);
}

/* Responsive - Mobile Horizontal Scroll */
@media (max-width: 768px) {
    /* Features Grid - Horizontal Scroll */
    .special-features-section .features-grid,
    .features-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .features-grid::-webkit-scrollbar {
        height: 8px;
    }

    .features-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .features-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .feature-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Everyday Products Grid - Horizontal Scroll */
    .everyday-products-section .everyday-products-grid,
    .everyday-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .everyday-products-grid::-webkit-scrollbar {
        height: 8px;
    }

    .everyday-products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .everyday-products-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .everyday-product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .everyday-product-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    /* Features Grid - Horizontal Scroll */
    .special-features-section .features-grid,
    .features-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Features - Smaller */
    .feature-card {
        flex: 0 0 220px;
        padding: 18px 12px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* Everyday Products Grid - Horizontal Scroll */
    .everyday-products-section .everyday-products-grid,
    .everyday-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Products - Smaller */
    .everyday-product-card {
        flex: 0 0 260px;
    }

    .everyday-product-image {
        height: 220px;
    }
}

/* =============================================
   NAPREDNA NEGA PAGE STYLES
   ============================================= */

/* Advanced Products Grid */
.advanced-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advanced-product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.advanced-product-card:hover {
    transform: translateY(-5px);
}

.advanced-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.advanced-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advanced-product-info {
    padding: 20px;
    text-align: center;
}

.advanced-product-info h3 {
    font-size: 20px;
    color: #003D5C;
    margin-bottom: 10px;
    font-weight: 600;
}

.advanced-product-price {
    font-size: 22px;
    color: #2d5a2d;
    font-weight: 700;
    margin-bottom: 15px;
}

.advanced-product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4a6b4a 0%, #2d5a2d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.advanced-product-btn:hover {
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3a1a 100%);
    transform: translateY(-2px);
}

/* Responsive - Mobile Horizontal Scroll */
@media (max-width: 768px) {
    /* Features Grid - Already defined, but ensure it works here too */
    .features-section .features-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Advanced Products Grid - Horizontal Scroll */
    .advanced-products-section .advanced-products-grid,
    .advanced-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .advanced-products-grid::-webkit-scrollbar {
        height: 8px;
    }

    .advanced-products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .advanced-products-grid::-webkit-scrollbar-thumb {
        background: #b8d4b8;
        border-radius: 10px;
    }

    .advanced-product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .advanced-product-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    /* Features Grid - Ensure it works for napredna-nega too */
    .features-section .features-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Advanced Products Grid - Horizontal Scroll */
    .advanced-products-section .advanced-products-grid,
    .advanced-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Products - Smaller */
    .advanced-product-card {
        flex: 0 0 260px;
    }

    .advanced-product-image {
        height: 220px;
    }
}

/* =============================================
   ZA NJU PAGE STYLES
   ============================================= */

/* Why List Section */
.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: linear-gradient(135deg, #fdf8fd 0%, #f5e8f5 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 18px;
    color: #8b5a8b;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ForHer Products Grid */
.forher-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.forher-product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.forher-product-card:hover {
    transform: translateY(-5px);
}

.forher-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.forher-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forher-product-info {
    padding: 20px;
    text-align: center;
}

.forher-product-info h3 {
    font-size: 20px;
    color: #003D5C;
    margin-bottom: 10px;
    font-weight: 600;
}

.forher-product-price {
    font-size: 22px;
    color: #8b5a8b;
    font-weight: 700;
    margin-bottom: 15px;
}

.forher-product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #a67ba6 0%, #8b5a8b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forher-product-btn:hover {
    background: linear-gradient(135deg, #8b5a8b 0%, #6d456d 100%);
    transform: translateY(-2px);
}

/* Responsive - Mobile Horizontal Scroll */
@media (max-width: 768px) {
    /* Ingredients Grid - Ensure it works for za-nju too */
    .ingredients-section .ingredients-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Why List - Horizontal Scroll */
    .why-section .why-list,
    .why-list {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .why-list::-webkit-scrollbar {
        height: 8px;
    }

    .why-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .why-list::-webkit-scrollbar-thumb {
        background: #d4b8d4;
        border-radius: 10px;
    }

    .why-item {
        flex: 0 0 220px;
        scroll-snap-align: start;
        padding: 20px 15px;
    }

    .why-item-icon {
        font-size: 36px;
    }

    .why-item h3 {
        font-size: 16px;
    }

    /* ForHer Products Grid - Horizontal Scroll */
    .forher-products-section .forher-products-grid,
    .forher-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 15px 20px !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    .forher-products-grid::-webkit-scrollbar {
        height: 8px;
    }

    .forher-products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .forher-products-grid::-webkit-scrollbar-thumb {
        background: #d4b8d4;
        border-radius: 10px;
    }

    .forher-product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .forher-product-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    /* Ingredients Grid - Ensure it works for za-nju too */
    .ingredients-section .ingredients-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Why List - Horizontal Scroll */
    .why-section .why-list,
    .why-list {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Why Items - Smaller */
    .why-item {
        flex: 0 0 200px;
        padding: 18px 12px;
    }

    .why-item-icon {
        font-size: 32px;
    }

    .why-item h3 {
        font-size: 15px;
    }

    /* ForHer Products Grid - Horizontal Scroll */
    .forher-products-section .forher-products-grid,
    .forher-products-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10px 20px !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
    }

    /* Products - Smaller */
    .forher-product-card {
        flex: 0 0 260px;
    }

    .forher-product-image {
        height: 220px;
    }
}

/* Newsletter Form Styles */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #003D5C;
}

.newsletter-input-group input::placeholder {
    color: #999;
}

.newsletter-input-group input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-submit {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255,255,255,0.8);
    transform: translateX(3px);
}

.newsletter-submit svg {
    width: 20px;
    height: 20px;
    color: white;
}

.newsletter-message {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 10px;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.newsletter-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.newsletter-message.info {
    display: block;
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Mobile responsiveness for newsletter */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   HORIZONTAL PRODUCTS SECTION
   ======================================== */

.all-products-horizontal-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.horizontal-products-wrapper {
    position: relative;
    margin: 40px 0;
}

.horizontal-products-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #003D5C #e0e0e0;
}

/* Custom scrollbar for webkit browsers */
.horizontal-products-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-products-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.horizontal-products-container::-webkit-scrollbar-thumb {
    background: #003D5C;
    border-radius: 10px;
    transition: background 0.3s;
}

.horizontal-products-container::-webkit-scrollbar-thumb:hover {
    background: #002a42;
}

.horizontal-product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.horizontal-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.horizontal-product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.horizontal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.horizontal-product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}

.horizontal-product-info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.horizontal-product-category {
    display: inline-block;
    background: #E8F4F8;
    color: #003D5C;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.horizontal-product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #003D5C;
    margin: 10px 0;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.horizontal-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #003D5C;
    margin-top: 12px;
}

.view-all-products-btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all-products {
    display: inline-block;
    padding: 15px 40px;
    background: #003D5C;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 61, 92, 0.2);
}

.btn-view-all-products:hover {
    background: #002a42;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 61, 92, 0.3);
}

/* Mobile responsiveness for horizontal products */
@media (max-width: 768px) {
    .all-products-horizontal-section {
        padding: 50px 0;
    }

    .horizontal-product-card {
        flex: 0 0 220px;
    }

    .horizontal-product-image {
        height: 220px;
    }

    .horizontal-product-info {
        padding: 15px;
    }

    .horizontal-product-info h3 {
        font-size: 14px;
        min-height: 40px;
    }

    .horizontal-product-price {
        font-size: 18px;
    }

    .btn-view-all-products {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Show scrollbar indicator on mobile */
    .horizontal-products-container {
        scrollbar-width: thin;
        scrollbar-color: rgba(0,61,92,0.3) rgba(0,61,92,0.1);
    }

    .horizontal-products-container::-webkit-scrollbar {
        height: 6px;
    }

    .horizontal-products-container::-webkit-scrollbar-track {
        background: rgba(0,61,92,0.1);
        border-radius: 10px;
    }

    .horizontal-products-container::-webkit-scrollbar-thumb {
        background: rgba(0,61,92,0.4);
        border-radius: 10px;
    }

    /* Add visible scroll indicator track */
    .horizontal-products-container::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 20px;
        right: 20px;
        height: 3px;
        background: rgba(0,61,92,0.15);
        border-radius: 10px;
        pointer-events: none;
    }

    /* Add swipe indicator */
    .horizontal-products-container::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(0,61,92,0.4);
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
        z-index: 10;
    }

    .all-products-horizontal-section {
        position: relative;
    }
}


/* Fix: Show tooltip BELOW circles with enough space - Desktop only */
@media (min-width: 769px) {
    .oils-section {
        overflow: visible !important;
    }

    .oils-grid {
        overflow: visible !important;
        padding-bottom: 300px !important;
        margin-bottom: -250px !important;
    }

    .oil-circle-wrapper {
        position: relative;
        z-index: 1;
    }

    .oil-circle-wrapper:hover {
        z-index: 1000;
    }

    .oil-tooltip {
        bottom: auto !important;
        top: 120% !important;
        z-index: 10000 !important;
    }

    .oil-tooltip::after {
        top: auto !important;
        bottom: 100% !important;
        border-top-color: transparent !important;
        border-bottom-color: #fff !important;
    }

    .oils-section .container {
        overflow: visible !important;
    }
}


/* Center single external product card */
.external-products {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* Ensure mobile submenu toggle is clickable */
.mobile-submenu-toggle {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

.mobile-submenu-item > .mobile-submenu-toggle {
    display: flex !important;
    justify-content: space-between !important;
}

/* Store Locations Map Section */
.store-locations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
}

.store-locations-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #003D5C;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.store-locations-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #003D5C, #4a90e2);
    border-radius: 2px;
}

#map {
    box-shadow: 0 10px 40px rgba(0, 61, 92, 0.15);
    transition: all 0.3s ease;
}

#map:hover {
    box-shadow: 0 15px 50px rgba(0, 61, 92, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .store-locations-section {
        padding: 60px 0;
    }

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

    #map {
        height: 450px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 480px) {
    .store-locations-section {
        padding: 40px 0;
    }

    .store-locations-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    #map {
        height: 400px !important;
    }
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 61, 92, 0.2);
}

.leaflet-popup-content {
    margin: 16px 20px;
    line-height: 1.5;
}

.leaflet-popup-tip {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Make sure map markers are visible */
.leaflet-marker-icon {
    transition: transform 0.2s ease;
}

.leaflet-marker-icon:hover {
    transform: scale(1.1);
}

/* Panaceo Order CTA Section */
.panaceo-order-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #003D5C 0%, #005580 100%);
    text-align: center;
}

.order-cta-content h2 {
    color: white;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.order-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

.order-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: white;
    color: #003D5C;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.order-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.order-cta-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .panaceo-order-cta-section {
        padding: 60px 0;
    }

    .order-cta-content h2 {
        font-size: 28px;
    }

    .order-cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .order-cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* Panaceo Products Section */
.panaceo-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.panaceo-products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.panaceo-products-section .section-header h2 {
    font-size: 38px;
    color: #003D5C;
    font-weight: 700;
    margin-bottom: 15px;
}

.panaceo-products-section .section-header p {
    font-size: 18px;
    color: #003D5C;
}

.panaceo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.panaceo-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.panaceo-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 61, 92, 0.15);
}

.panaceo-product-card.featured {
    border: 3px solid #4caf50;
}

.featured-badge {
    position: absolute;
    top: 35px;
    right: -60px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    z-index: 10;
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    padding: 30px;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 24px;
    color: #003D5C;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-subtitle {
    color: #4caf50;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.product-features li {
    padding: 10px 0;
    color: #003D5C;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #003D5C 0%, #005580 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.2);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 61, 92, 0.3);
    background: linear-gradient(135deg, #002a42 0%, #003d5c 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .panaceo-products-section {
        padding: 60px 0;
    }

    .panaceo-products-section .section-header h2 {
        font-size: 28px;
    }

    .panaceo-products-section .section-header p {
        font-size: 16px;
    }

    .panaceo-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image-wrapper {
        height: 220px;
        padding: 20px;
    }

    .product-content {
        padding: 25px;
    }

    .product-content h3 {
        font-size: 20px;
    }

    .featured-badge {
        font-size: 10px;
        padding: 6px 35px;
    }
}

/* External Order Button */
.btn-external-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-external-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
}

.btn-external-order svg {
    width: 20px;
    height: 20px;
}

/* External Link Price Styling */
.external-link-price {
    color: #4caf50 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Brands Grid Section */
/* Duplicate brands-grid removed - using horizontal scroll version above */

.brand-logo-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 150px;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.brand-logo-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Novatopia Logo Specific Styling */
.brand-logo-card img[alt="Novatopia"] {
    transform: scale(3.0);
}

/* Mobile styles moved to main partner-brands-section media queries above */

/* ============================================
   NOVALOU OIL TOOLTIP - SIMPLE CENTERED MODAL
   BEO okvir, CRN tekst, centar ekrana
   ============================================ */
@media (max-width: 768px) {
    /* BEO modal u centru ekrana */
    .oil-tooltip {
        display: none !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 85% !important;
        max-width: 340px !important;
        max-height: 75vh !important;
        overflow-y: auto !important;
        background-color: #ffffff !important;
        background: #ffffff !important;
        padding: 25px 20px !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
        z-index: 99999 !important;
        margin: 0 !important;
    }

    /* Prikaži modal kada je aktivan */
    .oil-circle-wrapper.active .oil-tooltip {
        display: block !important;
    }

    /* Naslov - CRN */
    .oil-tooltip h4 {
        color: #003D5C !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        margin: 0 0 12px 0 !important;
        padding: 0 !important;
    }

    /* Paragraf - CRN */
    .oil-tooltip p {
        color: #003D5C !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    /* Bold tekst - CRN */
    .oil-tooltip strong {
        color: #003D5C !important;
        font-weight: 700 !important;
    }

    /* Close dugme X */
    .oil-tooltip-close {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        width: 32px !important;
        height: 32px !important;
        background: #2d5a2d !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 50% !important;
        font-size: 22px !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        z-index: 10 !important;
    }

    /* Tamna pozadina iza modala - UKLONJENA */

    /* Ukloni strelicu */
    .oil-tooltip::before,
    .oil-tooltip::after {
        display: none !important;
        content: none !important;
    }
}

/* ============================================
   GLOBAL HORIZONTAL SCROLL STYLES
   Uvek vidljiv scrollbar za sve sekcije sa horizontal scroll
   ============================================ */

/* Lista svih horizontal scroll kontejnera */
.category-grid,
.flip-cards-grid,
.benefits-grid,
.novalou-badges-grid,
.oils-grid,
.ingredients-content,
.panaceo-benefits-grid,
.why-panaceo-content,
.biolin-benefits-grid,
.inca-badges-grid,
.sourcing-features,
.inca-benefits-grid,
.phyto-badges-grid,
.phyto-benefits-grid,
.components-icons-grid,
.composition-details-phyto,
.clinical-results-scroll,
.barrier-grid,
.mechanism-benefits,
.fucogel-benefits-grid,
.clinical-results-fucogel,
.moisturization-results,
.peptizinc-action-box,
.botanicals-grid,
.mechanism-grid-peptizinc,
.sustainability-grid,
.marine-benefits-grid,
.clinical-results-marine,
.glycosnail-composition,
.glycosnail-benefits-grid,
.formation-story,
.discovery-timeline-wrapper,
.applications-grid,
.detox-mechanism,
.comparison-grid,
.action-buttons-grid,
.req-grid,
.ion-exchange-process,
.toxins-grid,
.benefits-grid-deluje,
.protection-grid,
.safety-grid,
.dosage-grid,
.benefits-groups,
.specialized-grid,
.products-comparison,
.safety-grid-koristiti,
.rontamil-products-grid,
.standards-grid,
.audience-icons {
    position: relative !important;
}

/* Webkit scrollbar stilovi (Chrome, Safari, Edge) */
.category-grid::-webkit-scrollbar,
.flip-cards-grid::-webkit-scrollbar,
.benefits-grid::-webkit-scrollbar,
.novalou-badges-grid::-webkit-scrollbar,
.oils-grid::-webkit-scrollbar,
.ingredients-content::-webkit-scrollbar,
.panaceo-benefits-grid::-webkit-scrollbar,
.why-panaceo-content::-webkit-scrollbar,
.biolin-benefits-grid::-webkit-scrollbar,
.inca-badges-grid::-webkit-scrollbar,
.sourcing-features::-webkit-scrollbar,
.inca-benefits-grid::-webkit-scrollbar,
.phyto-badges-grid::-webkit-scrollbar,
.phyto-benefits-grid::-webkit-scrollbar,
.components-icons-grid::-webkit-scrollbar,
.composition-details-phyto::-webkit-scrollbar,
.clinical-results-scroll::-webkit-scrollbar,
.barrier-grid::-webkit-scrollbar,
.mechanism-benefits::-webkit-scrollbar,
.fucogel-benefits-grid::-webkit-scrollbar,
.clinical-results-fucogel::-webkit-scrollbar,
.moisturization-results::-webkit-scrollbar,
.peptizinc-action-box::-webkit-scrollbar,
.botanicals-grid::-webkit-scrollbar,
.mechanism-grid-peptizinc::-webkit-scrollbar,
.sustainability-grid::-webkit-scrollbar,
.marine-benefits-grid::-webkit-scrollbar,
.clinical-results-marine::-webkit-scrollbar,
.glycosnail-composition::-webkit-scrollbar,
.glycosnail-benefits-grid::-webkit-scrollbar,
.formation-story::-webkit-scrollbar,
.discovery-timeline-wrapper::-webkit-scrollbar,
.applications-grid::-webkit-scrollbar,
.detox-mechanism::-webkit-scrollbar,
.comparison-grid::-webkit-scrollbar,
.action-buttons-grid::-webkit-scrollbar,
.req-grid::-webkit-scrollbar,
.ion-exchange-process::-webkit-scrollbar,
.toxins-grid::-webkit-scrollbar,
.benefits-grid-deluje::-webkit-scrollbar,
.protection-grid::-webkit-scrollbar,
.safety-grid::-webkit-scrollbar,
.dosage-grid::-webkit-scrollbar,
.benefits-groups::-webkit-scrollbar,
.specialized-grid::-webkit-scrollbar,
.products-comparison::-webkit-scrollbar,
.safety-grid-koristiti::-webkit-scrollbar,
.rontamil-products-grid::-webkit-scrollbar,
.standards-grid::-webkit-scrollbar,
.audience-icons::-webkit-scrollbar {
    height: 8px !important;
}

.category-grid::-webkit-scrollbar-track,
.flip-cards-grid::-webkit-scrollbar-track,
.benefits-grid::-webkit-scrollbar-track,
.novalou-badges-grid::-webkit-scrollbar-track,
.oils-grid::-webkit-scrollbar-track,
.ingredients-content::-webkit-scrollbar-track,
.panaceo-benefits-grid::-webkit-scrollbar-track,
.why-panaceo-content::-webkit-scrollbar-track,
.biolin-benefits-grid::-webkit-scrollbar-track,
.inca-badges-grid::-webkit-scrollbar-track,
.sourcing-features::-webkit-scrollbar-track,
.inca-benefits-grid::-webkit-scrollbar-track,
.phyto-badges-grid::-webkit-scrollbar-track,
.phyto-benefits-grid::-webkit-scrollbar-track,
.components-icons-grid::-webkit-scrollbar-track,
.composition-details-phyto::-webkit-scrollbar-track,
.clinical-results-scroll::-webkit-scrollbar-track,
.barrier-grid::-webkit-scrollbar-track,
.mechanism-benefits::-webkit-scrollbar-track,
.fucogel-benefits-grid::-webkit-scrollbar-track,
.clinical-results-fucogel::-webkit-scrollbar-track,
.moisturization-results::-webkit-scrollbar-track,
.peptizinc-action-box::-webkit-scrollbar-track,
.botanicals-grid::-webkit-scrollbar-track,
.mechanism-grid-peptizinc::-webkit-scrollbar-track,
.sustainability-grid::-webkit-scrollbar-track,
.marine-benefits-grid::-webkit-scrollbar-track,
.clinical-results-marine::-webkit-scrollbar-track,
.glycosnail-composition::-webkit-scrollbar-track,
.glycosnail-benefits-grid::-webkit-scrollbar-track,
.formation-story::-webkit-scrollbar-track,
.discovery-timeline-wrapper::-webkit-scrollbar-track,
.applications-grid::-webkit-scrollbar-track,
.detox-mechanism::-webkit-scrollbar-track,
.comparison-grid::-webkit-scrollbar-track,
.action-buttons-grid::-webkit-scrollbar-track,
.req-grid::-webkit-scrollbar-track,
.ion-exchange-process::-webkit-scrollbar-track,
.toxins-grid::-webkit-scrollbar-track,
.benefits-grid-deluje::-webkit-scrollbar-track,
.protection-grid::-webkit-scrollbar-track,
.safety-grid::-webkit-scrollbar-track,
.dosage-grid::-webkit-scrollbar-track,
.benefits-groups::-webkit-scrollbar-track,
.specialized-grid::-webkit-scrollbar-track,
.products-comparison::-webkit-scrollbar-track,
.safety-grid-koristiti::-webkit-scrollbar-track,
.rontamil-products-grid::-webkit-scrollbar-track,
.standards-grid::-webkit-scrollbar-track,
.audience-icons::-webkit-scrollbar-track {
    background: rgba(76, 175, 80, 0.1) !important;
    border-radius: 10px !important;
}

.category-grid::-webkit-scrollbar-thumb,
.flip-cards-grid::-webkit-scrollbar-thumb,
.benefits-grid::-webkit-scrollbar-thumb,
.novalou-badges-grid::-webkit-scrollbar-thumb,
.oils-grid::-webkit-scrollbar-thumb,
.ingredients-content::-webkit-scrollbar-thumb,
.panaceo-benefits-grid::-webkit-scrollbar-thumb,
.why-panaceo-content::-webkit-scrollbar-thumb,
.biolin-benefits-grid::-webkit-scrollbar-thumb,
.inca-badges-grid::-webkit-scrollbar-thumb,
.sourcing-features::-webkit-scrollbar-thumb,
.inca-benefits-grid::-webkit-scrollbar-thumb,
.phyto-badges-grid::-webkit-scrollbar-thumb,
.phyto-benefits-grid::-webkit-scrollbar-thumb,
.components-icons-grid::-webkit-scrollbar-thumb,
.composition-details-phyto::-webkit-scrollbar-thumb,
.clinical-results-scroll::-webkit-scrollbar-thumb,
.barrier-grid::-webkit-scrollbar-thumb,
.mechanism-benefits::-webkit-scrollbar-thumb,
.fucogel-benefits-grid::-webkit-scrollbar-thumb,
.clinical-results-fucogel::-webkit-scrollbar-thumb,
.moisturization-results::-webkit-scrollbar-thumb,
.peptizinc-action-box::-webkit-scrollbar-thumb,
.botanicals-grid::-webkit-scrollbar-thumb,
.mechanism-grid-peptizinc::-webkit-scrollbar-thumb,
.sustainability-grid::-webkit-scrollbar-thumb,
.marine-benefits-grid::-webkit-scrollbar-thumb,
.clinical-results-marine::-webkit-scrollbar-thumb,
.glycosnail-composition::-webkit-scrollbar-thumb,
.glycosnail-benefits-grid::-webkit-scrollbar-thumb,
.formation-story::-webkit-scrollbar-thumb,
.discovery-timeline-wrapper::-webkit-scrollbar-thumb,
.applications-grid::-webkit-scrollbar-thumb,
.detox-mechanism::-webkit-scrollbar-thumb,
.comparison-grid::-webkit-scrollbar-thumb,
.action-buttons-grid::-webkit-scrollbar-thumb,
.req-grid::-webkit-scrollbar-thumb,
.ion-exchange-process::-webkit-scrollbar-thumb,
.toxins-grid::-webkit-scrollbar-thumb,
.benefits-grid-deluje::-webkit-scrollbar-thumb,
.protection-grid::-webkit-scrollbar-thumb,
.safety-grid::-webkit-scrollbar-thumb,
.dosage-grid::-webkit-scrollbar-thumb,
.benefits-groups::-webkit-scrollbar-thumb,
.specialized-grid::-webkit-scrollbar-thumb,
.products-comparison::-webkit-scrollbar-thumb,
.safety-grid-koristiti::-webkit-scrollbar-thumb,
.rontamil-products-grid::-webkit-scrollbar-thumb,
.standards-grid::-webkit-scrollbar-thumb,
.audience-icons::-webkit-scrollbar-thumb {
    background: rgba(76, 175, 80, 0.6) !important;
    border-radius: 10px !important;
}

.category-grid::-webkit-scrollbar-thumb:hover,
.flip-cards-grid::-webkit-scrollbar-thumb:hover,
.benefits-grid::-webkit-scrollbar-thumb:hover,
.novalou-badges-grid::-webkit-scrollbar-thumb:hover,
.oils-grid::-webkit-scrollbar-thumb:hover,
.ingredients-content::-webkit-scrollbar-thumb:hover,
.panaceo-benefits-grid::-webkit-scrollbar-thumb:hover,
.why-panaceo-content::-webkit-scrollbar-thumb:hover,
.biolin-benefits-grid::-webkit-scrollbar-thumb:hover,
.inca-badges-grid::-webkit-scrollbar-thumb:hover,
.sourcing-features::-webkit-scrollbar-thumb:hover,
.inca-benefits-grid::-webkit-scrollbar-thumb:hover,
.phyto-badges-grid::-webkit-scrollbar-thumb:hover,
.phyto-benefits-grid::-webkit-scrollbar-thumb:hover,
.components-icons-grid::-webkit-scrollbar-thumb:hover,
.composition-details-phyto::-webkit-scrollbar-thumb:hover,
.clinical-results-scroll::-webkit-scrollbar-thumb:hover,
.barrier-grid::-webkit-scrollbar-thumb:hover,
.mechanism-benefits::-webkit-scrollbar-thumb:hover,
.fucogel-benefits-grid::-webkit-scrollbar-thumb:hover,
.clinical-results-fucogel::-webkit-scrollbar-thumb:hover,
.moisturization-results::-webkit-scrollbar-thumb:hover,
.peptizinc-action-box::-webkit-scrollbar-thumb:hover,
.botanicals-grid::-webkit-scrollbar-thumb:hover,
.mechanism-grid-peptizinc::-webkit-scrollbar-thumb:hover,
.sustainability-grid::-webkit-scrollbar-thumb:hover,
.marine-benefits-grid::-webkit-scrollbar-thumb:hover,
.clinical-results-marine::-webkit-scrollbar-thumb:hover,
.glycosnail-composition::-webkit-scrollbar-thumb:hover,
.glycosnail-benefits-grid::-webkit-scrollbar-thumb:hover,
.formation-story::-webkit-scrollbar-thumb:hover,
.discovery-timeline-wrapper::-webkit-scrollbar-thumb:hover,
.applications-grid::-webkit-scrollbar-thumb:hover,
.detox-mechanism::-webkit-scrollbar-thumb:hover,
.comparison-grid::-webkit-scrollbar-thumb:hover,
.action-buttons-grid::-webkit-scrollbar-thumb:hover,
.req-grid::-webkit-scrollbar-thumb:hover,
.ion-exchange-process::-webkit-scrollbar-thumb:hover,
.toxins-grid::-webkit-scrollbar-thumb:hover,
.benefits-grid-deluje::-webkit-scrollbar-thumb:hover,
.protection-grid::-webkit-scrollbar-thumb:hover,
.safety-grid::-webkit-scrollbar-thumb:hover,
.dosage-grid::-webkit-scrollbar-thumb:hover,
.benefits-groups::-webkit-scrollbar-thumb:hover,
.specialized-grid::-webkit-scrollbar-thumb:hover,
.products-comparison::-webkit-scrollbar-thumb:hover,
.safety-grid-koristiti::-webkit-scrollbar-thumb:hover,
.rontamil-products-grid::-webkit-scrollbar-thumb:hover,
.standards-grid::-webkit-scrollbar-thumb:hover,
.audience-icons::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 175, 80, 0.8) !important;
}

/* Firefox scrollbar */
.category-grid,
.flip-cards-grid,
.benefits-grid,
.novalou-badges-grid,
.oils-grid,
.ingredients-content,
.panaceo-benefits-grid,
.why-panaceo-content,
.biolin-benefits-grid,
.inca-badges-grid,
.sourcing-features,
.inca-benefits-grid,
.phyto-badges-grid,
.phyto-benefits-grid,
.components-icons-grid,
.composition-details-phyto,
.clinical-results-scroll,
.barrier-grid,
.mechanism-benefits,
.fucogel-benefits-grid,
.clinical-results-fucogel,
.moisturization-results,
.peptizinc-action-box,
.botanicals-grid,
.mechanism-grid-peptizinc,
.sustainability-grid,
.marine-benefits-grid,
.clinical-results-marine,
.glycosnail-composition,
.glycosnail-benefits-grid,
.formation-story,
.discovery-timeline-wrapper,
.applications-grid,
.detox-mechanism,
.comparison-grid,
.action-buttons-grid,
.req-grid,
.ion-exchange-process,
.toxins-grid,
.benefits-grid-deluje,
.protection-grid,
.safety-grid,
.dosage-grid,
.benefits-groups,
.specialized-grid,
.products-comparison,
.safety-grid-koristiti,
.rontamil-products-grid,
.standards-grid,
.audience-icons {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(76, 175, 80, 0.6) rgba(76, 175, 80, 0.1) !important;
}

/* Uvek vidljiva linija ispod (::after pseudo-element) */
.category-grid::after,
.flip-cards-grid::after,
.benefits-grid::after,
.novalou-badges-grid::after,
.oils-grid::after,
.ingredients-content::after,
.panaceo-benefits-grid::after,
.why-panaceo-content::after,
.biolin-benefits-grid::after,
.inca-badges-grid::after,
.sourcing-features::after,
.inca-benefits-grid::after,
.phyto-badges-grid::after,
.phyto-benefits-grid::after,
.components-icons-grid::after,
.composition-details-phyto::after,
.clinical-results-scroll::after,
.barrier-grid::after,
.mechanism-benefits::after,
.fucogel-benefits-grid::after,
.clinical-results-fucogel::after,
.moisturization-results::after,
.peptizinc-action-box::after,
.botanicals-grid::after,
.mechanism-grid-peptizinc::after,
.sustainability-grid::after,
.marine-benefits-grid::after,
.clinical-results-marine::after,
.glycosnail-composition::after,
.glycosnail-benefits-grid::after,
.formation-story::after,
.discovery-timeline-wrapper::after,
.applications-grid::after,
.detox-mechanism::after,
.comparison-grid::after,
.action-buttons-grid::after,
.req-grid::after,
.ion-exchange-process::after,
.toxins-grid::after,
.benefits-grid-deluje::after,
.protection-grid::after,
.safety-grid::after,
.dosage-grid::after,
.benefits-groups::after,
.specialized-grid::after,
.products-comparison::after,
.safety-grid-koristiti::after,
.rontamil-products-grid::after,
.standards-grid::after,
.audience-icons::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: rgba(76, 175, 80, 0.25);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

/* Product Warning Boxes */
.product-warning {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 2px solid;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-warning .warning-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-warning .warning-content {
    flex: 1;
}

.product-warning .warning-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-warning .warning-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Medical Device Warning - Red theme */
.medical-device-warning {
    border-color: #d32f2f;
    background: #ffebee;
}

.medical-device-warning .warning-icon {
    background: #d32f2f;
    color: white;
}

.medical-device-warning .warning-content strong {
    color: #d32f2f;
}

.medical-device-warning .warning-content p {
    color: #003D5C;
}

/* Return Policy Warning - Orange theme */
.return-policy-warning {
    border-color: #f57c00;
    background: #fff3e0;
}

.return-policy-warning .warning-icon {
    background: #f57c00;
    color: white;
}

.return-policy-warning .warning-content strong {
    color: #f57c00;
}

.return-policy-warning .warning-content p {
    color: #003D5C;
}

/* Responsive */
@media (max-width: 768px) {
    .product-warning {
        padding: 15px;
        gap: 12px;
    }

    .product-warning .warning-icon {
        width: 35px;
        height: 35px;
    }

    .product-warning .warning-icon svg {
        width: 20px;
        height: 20px;
    }

    .product-warning .warning-content strong {
        font-size: 15px;
    }

    .product-warning .warning-content p {
        font-size: 13px;
    }
}

/* Footer Brand Social Grid */
.brand-social-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.brand-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.brand-label {
    font-size: 14px;
    font-weight: 600;
    color: #c9a961;
    margin-bottom: 12px;
    display: block;
    white-space: nowrap;
}

.brand-social-item .social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.brand-social-item .social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.brand-social-item .social-link:hover {
    transform: translateY(-3px);
}

/* Responsive for brand social grid */
@media (max-width: 768px) {
    .brand-social-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .brand-label {
        font-size: 13px;
    }

    .brand-social-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* ===========================
   INFO BOX STYLES FOR PRODUCT TABS
   =========================== */

.info-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid;
    background: #f8f9fa;
}

.info-box-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.info-box-content {
    flex: 1;
}

.info-box-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #003D5C;
}

.info-box-content p {
    margin: 8px 0;
    line-height: 1.6;
    color: #003D5C;
}

.info-box-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.info-box-content ul li {
    margin: 5px 0;
    color: #003D5C;
}

/* Blue Info Box */
.info-box-blue {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.info-box-blue .info-box-content h4 {
    color: #1976d2;
}

/* Green Info Box */
.info-box-green {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.info-box-green .info-box-content h4 {
    color: #2e7d32;
}

/* Orange Info Box */
.info-box-orange {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.info-box-orange .info-box-content h4 {
    color: #e65100;
}

/* Red Info Box */
.info-box-red {
    background: #ffebee;
    border-left-color: #f44336;
}

.info-box-red .info-box-content h4 {
    color: #c62828;
}

/* Yellow Info Box */
.info-box-yellow {
    background: #fffde7;
    border-left-color: #fbc02d;
}

.info-box-yellow .info-box-content h4 {
    color: #f57f17;
}

/* Responsive */
@media (max-width: 768px) {
    .info-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .info-box-icon {
        font-size: 28px;
    }

    .info-box-content h4 {
        font-size: 16px;
    }
}
