/* Fonts */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2'),
       url('../fonts/inter-v20-latin_latin-ext-regular.ttf') format('truetype');
    }
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2'),
       url('../fonts/inter-v20-latin_latin-ext-600.ttf') format('truetype');
    }

/* General Vars */
:root {
    --accent: #868686;
    --focus-ring: 2px solid var(--accent);

    --menu-main-color: #000;
    --menu-main-color-dark: #262626;

    --default-text-light: #fff;
    --default-text-dark: #333;
   
    --gap-sm: 0.75rem;
    --gap-md: 1rem;
    --gap-lg: 1rem;

    --margin-sm: .5rem;
    --margin-md: 1.5rem;
    --margin-lg: 2.5rem;

    --padding-sm: .5rem;
    --padding-md: 1.5rem;
    --padding-lg: 2.5rem;

    --font-size-main-menu: 1rem;
 
    --font-size-sm: 1rem;
    --font-size-base: 1.1rem;
    --font-size-lg: 1.1em;

    --font-size-title-xs: 1rem;
    --font-size-title-sm: 1.2rem;
    --font-size-title-base: 1.4rem;
    --font-size-title-lg: 1.8rem;
    --font-size-title-xl: 2rem;

    --font-size-box-sm: 0.8rem;
    --font-size-box-md: 1rem;
    --font-size-box-lg: 1.5rem;

    --font-family-base: 'Inter', "Helvetica Neue", Helvetica, Arial, sans-serif;

    --font-line-height-base: 1.6;

    --text-link-color: #333;
    --text-link-color-hover: #8485C6;
    }
@media (min-width: 62rem) {
    :root {
        --gap-sm: 0.75rem;
        --gap-md: 1rem;
        --gap-lg: 3rem;

        --margin-sm: .5rem;
        --margin-md: 1.5rem;
        --margin-lg: 2.5rem;

        --padding-sm: 1.5rem;
        --padding-md: 2.5rem;
        --padding-lg: 3.5rem;

        --font-size-main-menu: 0.85rem;

        --font-size-sm: 1.2rem;
        --font-size-base: 1.3rem;
        --font-size-lg: 1.2rem;

        --font-size-box-sm: 0.8rem;
        --font-size-box-md: 1rem;
        --font-size-box-lg: 1.8rem;

        --font-size-title-xs: 1.2rem;
        --font-size-title-sm: 1.6rem;
        --font-size-title-base: 1.6rem;
        --font-size-title-lg: 2.4rem;
        --font-size-title-xl: 3rem;
        }
    }

/* Temporary Mobile Fixes */
@media (max-width: 62rem) {
    .text-page-wrapper{
        padding: 30px !important;
        }
    .slider-section{
        padding: 0 !important;
        }


    .brands-section{
        padding: 0 0 30px 0 !important;
        }
    .brands-section-home{
        padding: 50px 0 40px 0 !important;
        }
    .news-section {
        padding: 20px 0 40px 0 !important;
        }
    .news-section-home{
        padding: 50px 0 40px 0 !important;
        }
    .promo-section{
        padding: 50px 0 40px 0 !important;
        }
    .title-box-wide{
        margin-top: 0px !important;
        }
    .homepage-text-section{
        padding: 50px 0 40px 0 !important;
        }
    .brand-socials-logo img{
        max-width: 230px;
        }
    .bottle-size-icons{
        padding: 0 !important;
        gap: 0.2em !important;
        }
    .size-tab{
        font-size: 11px !important;
        padding: 0 3px 0 3px;
        }
    .size-tab img{
        width: 20px !important;
        margin: 0 0 3px 0 !important;
        }
}
@media (max-width: 40rem) {
    .brand-list {
            grid-template-columns: repeat(1, 1fr) !important;
        }
    .brand-header-logo img{
            max-width: 80% !important;
        }
    .inline-post-nav a{
        font-size: 1.5rem !important;
        padding: 1.5rem 1rem !important;
        }
    .footer-logo img{
        max-width: 70% !important;
        }
    .legal-menu-block ul{
        display: block !important;
        text-align: center !important;
        }
}


/* Keyboard Nav Focus Ring */
a:focus-visible, button:focus-visible, 
input:focus-visible, select:focus-visible, 
textarea:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 2px;
    }
/* Reduced-motion pref */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
        }
    }

/* Basic reset */
html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    }
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    line-height: var(--font-line-height-base);
    background: #ececec;
    margin: 0;
    }
h1 {
    font-size: var(--font-size-title-lg);
    font-weight: 400;
    }
h2 {
    font-size: var(--font-size-title-base);
    font-weight: 400;
    }
h3 {
    font-size: var(--font-size-title-sm);
    font-weight: 400;
    }
h4{
    font-size: var(--font-size-title-sm);
    font-weight: 400;
    }
a {
    background-color: transparent;
    text-decoration: none;
    color: var(--text-link-color);
    }
b,strong {
    font-weight: bold;
    }
img {
    border-style: none;
    max-width: 100%;
    height: auto;
    }

/* Header */
header {
    background: var(--menu-main-color);
    position: sticky;
    top: 0;
    z-index: 4;
    width: 100%;
    }
header .container {
    padding: 0 20px 0 20px;
    }

/* Main Menu */
#menu ul {
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1;
    font-size: var(--font-size-main-menu);
    }
#menu .main-menu {
    display: none;
    }
#tm:checked ~ label span{
    background-color: #444;
    }
#tm:checked ~ .main-menu {
    display: block;
    }
#menu input[type="checkbox"], 
#menu ul span.drop-icon {
    display: none;
    }
#menu li, 
#toggle-menu, 
#menu .sub-menu {
    border-style: solid;
    border-color: rgba(0, 0, 0, .05);
    }
#menu li, 
#toggle-menu {
    border-width: 0 0 1px;
    margin: 0;
    }
#menu .sub-menu {
    background-color: #444;
    border: 0;
    z-index: 3;
    border-left: 5px solid #555;
    }
#menu .sub-menu .sub-menu{
    background-color: #666;
    border-left: 5px solid #888;
    }
#menu .sub-menu li:last-child {
    border-width: 0;
    }
#menu li, 
#toggle-menu, 
#menu a {
    position: relative;
    display: block;
    color: #fff;
    font-weight: 500;
    }
#toggle-menu{
    user-select: none;
    }
#menu li.current-menu-item > a, 
#menu li.current-menu-parent > a, 
#menu li.current-menu-ancestor > a{
    background-color: var(--menu-main-color-dark);
    }
#menu a {
    padding: 1em 1.5em;
    }
#menu li:hover a{
    background-color: var(--menu-main-color-dark);
    color: #fff !important;
    }
#menu a:hover {
    background-color: var(--menu-main-color-dark);
    color: #fff !important;
    }
#menu .sub-menu {
    display: none;
    }
#menu .sub-menu a:hover, 
#menu .sub-menu li.current-menu-item a, 
#menu .sub-menu li.current-menu-ancestor > a {
    background-color: #333;
    }
#menu input[type="checkbox"]:checked ~ .sub-menu {
    display: block;
    }
#menu input[type="checkbox"]:checked + a label{
    color: #333;
    }
#toggle-menu .drop-icon, 
#menu li label.drop-icon {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    }
#menu label.drop-icon, #toggle-menu span.drop-icon {
    padding: 1em;
    font-size: 1em;
    text-align: center;
    background-color: rgba(0, 0, 0, .125);
    text-shadow: 0 0 0 transparent;
    color: rgba(255, 255, 255, .75);
    }
#toggle-menu span.drop-icon{
    margin-top: 8px !important;
    margin-right: -10px !important;
    }
.bg-burger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    margin: 4px auto;
    }
.bg-burger-icon::before,
.bg-burger-icon::after,
.bg-burger-icon div {
    background: var(--default-text-light);
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    width: 24px;
    border-radius: 1px;
    transition: all .2s ease-in-out;
    }
.bg-burger-icon::before {
    top: 0;
    }
.bg-burger-icon div {
    top: 8px;
    }
.bg-burger-icon::after {
    bottom: 0;
    }
#tm:checked ~ label .bg-burger-icon::before {
    transform: translateY(8px) rotate(45deg);
    }
#tm:checked ~ label .bg-burger-icon::after {
    transform: translateY(-8px) rotate(-45deg);
    }
#tm:checked ~ label .bg-burger-icon div {
    opacity: 0;
    }
/* Mobile menu  */
#menu .main-menu {
    display: none;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    }
#tm:checked ~ .main-menu {
    display: block;
    }
body:has(#tm:checked) .header-top {
    display: none !important;
    }
body:has(#tm:checked) {
    overflow: hidden;
    }
body:has(#tm:checked) header {
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    }
body:has(#tm:checked) header .container {
    height: 100%;
    }
body:has(#tm:checked) #menu .main-menu {
    overflow: auto;
    width: 100%;
    padding-bottom: 2rem;
    }

/* Desktop menu  */
@media (min-width: 62rem) {
    #menu .main-menu {
        position: static;
        transform: none;
        display: block;
        float: right;
        background: none;
        padding: 0;
        overflow: visible;
        }
    #menu a { padding: 2.37em 1.5em; }
    #menu ul li ul li a { padding: 1.2em 1.5em; }
    #menu ul span.drop-icon {
        display: inline-block;
        color: var(--default-text-light);
        margin-left: 3px;
        }
    #toggle-menu,
    #menu label.drop-icon { display: none; }
    #menu li {
        float: left;
        border-width: 0 1px 0 0;
        }
    #menu li:last-child { border: 0; }
    /* Submenu positioning */
    #menu .sub-menu {
        border: 0;
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 280px;
        z-index: 3000;
        background-color: var(--menu-main-color-dark) !important;
        display: none;
        }
    #menu .sub-menu li {
        float: none;
        border-width: 0 0 2px;
        }
    #menu .sub-menu .sub-menu {
        top: 0;
        left: 100%;
        border: 0;
        }
    #menu .sub-menu .drop-icon {
        position: absolute;
        top: 0;
        right: 0;
        padding: 1em;
        }
    #menu li:hover > input[type="checkbox"] + .sub-menu {
        display: block;
        }
    }

/* Header Logo */
.logo {
    margin: .75rem 0;
    float: left;
    position: relative;
    z-index: 2;
    }

/* Lang Selector  */
.header-top-lang{
    float: right;
    margin: 23px 0 0 10px;
    padding-right: 55px;
    }
.header-top-lang a{
    font-size: 15px;
    margin: 0 0 0 8px;
    color: #fff;
    }
.header-top-lang a.current{
    color: #afafaf;
    display: none;
    }
.header-top-lang a:hover{
    text-decoration: underline;
    }
@media (min-width: 62rem) {
    .header-top-lang{
        padding: 0;
        }
    }

/* Title Header */
.title-header-section {
    background-color: #111;
    border-bottom: 1px solid #fff;
    padding: 20px 0 0 0 !important;
    }
.title-header-section .page-title{
    font-size: 2rem;    
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
    }
@media (min-width: 62rem) {
    .title-header-section{
        padding: 48px 0 4px 0;
        }
    .title-header-section .page-title{
        font-size: 3rem;
        }
    }  

/* General Containers */
.container {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    max-width: 1170px;
    position: relative;
    padding: 20px;
    }
.text-page-wrapper{
    padding: 70px;
    }
.narrow-container{
    max-width: 900px;
    }
.wysiwyg a {
    color: var(--text-link-color);
    text-decoration: underline;
    }
.wysiwyg a:hover {
    color: var(--text-link-color-hover) !important;
    }
.wysiwyg ul{
    margin-top: 0;
    }
.margin-bottom {
    margin-bottom: var(--margin-bottom-md);
    }   
.margin-top {
    margin-top: var(--margin-top-md);
    }
    
.page-content-section{
    padding-bottom: 50px;
    padding-top: 50px;
    }
.page-inner-wrap{
    background: #fff;
    border-radius: 10px;
    }
    
/* Homepage */
.homepage-text-section{
    padding: 50px 0 80px 0;
    }

/* Wide Headings */
.title-box-wide {
    margin: 50px 0 10px 0;
    }
.title-box-wide h1, .title-box-wide h2{
    font-weight: 600;
    display: inline-block;
    color: #111;
    margin: 0 0 30px 0;
    font-size: 2rem;
    line-height: 1.1;
    width: 100%;
    }
@media (min-width: 62rem) {
    .title-box-wide h1, .title-box-wide h2{
        font-size: 3rem;
        }
    }    

/* Featured image */
.post-featured {
    display: block;
    max-width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    }
.post-featured img{
    display: block;
    width: 100%;
    }
.post-featured iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    }

/* 50/50 split - inline related nav */
.split-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
.split-container .split-item {
    flex-basis: 50%;
    }
.split-container .split-end {
    text-align: right;
    }
.split-container .split-end .news-card-cats{
    border: 0;
    }
.split-container a:hover{
    text-decoration: underline;
    }
.split-container.bordered-top{
    border-top: 1px solid #dddddd;
    padding-top: 20px;
    margin-top: 50px;
    }
.split-container.bordered-bottom{
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
    margin: 0 0 50px 0;
    }    

/* Contact page */
.contact-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    }
@media (min-width: 62rem) {
    .contact-grid{
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 4rem;
        }
    }

/* Catalog Product Bottle Inline Nav */
.brand-bottle-row {
    display: flex;
    justify-content: stretch;
    align-items: flex-end;
    width: 100%;
    margin: 1rem 0 3rem 0;
    padding: 0;
    overflow: visible;
    border-radius: 10px;
    }
.bottle-item {
    flex: 1 1 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    padding: 2.5rem 0 3rem;

    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, filter 0.3s ease;
    }
.bottle-item:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    }
.bottle-item:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    }
.bottle-item+.bottle-item {
    margin: 0;
    }
.bottle-item:hover {
    filter: brightness(1.1);
    }
.bottle-thumb {
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    }
.bottle-item:hover .bottle-thumb {
    transform: translateX(-50%) scale(1.05);
    }
.bottle-thumb {
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    }
.bottle-item:hover .bottle-thumb {
    transform: translateX(-50%) scale(1.05);
    }

/* Footer */
footer{
    margin-top: 3rem;
    margin: 0px auto;
    width: 100%;
    background: var(--menu-main-color);
    }   

/* Footer Widgets */
.footer-widgets{
    display: grid;
    gap: 1rem;
    margin-top: 5rem;
    text-align: center;
    color: #dddddd;
    }
.footer-widgets h3{
    font-size: 30px;
    margin: 0 0 20px 0;
    }
.footer-menu{
    list-style: none;
    padding: 0;
    line-height: 2;
    font-size: 20px;
    }   
.footer-menu a{
    color: #ccc;
    }
.footer-menu a:hover{
    text-decoration: underline;
    }
.footer-credits{
    font-size: .8rem;
    line-height: 150%;
    color: #999;
    text-align: center;
    padding: 20px 0 20px 0;
    }
.legal-menu-block ul{
    list-style: none;
    padding: 20px 0 20px 0;
    margin: 40px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    font-size: 15px;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    }
.legal-menu-block ul li a{
    color: #999;
    }
.footer-logo img{
    width: 350px;
    max-width: 350px;
    }
@media (min-width: 62rem) {
    .footer-widgets {
        grid-template-columns: 1fr 1fr 1fr;
        }
    .footer-widgets>div:nth-child(1) {
        text-align: left;
    }
    .footer-widgets>div:nth-child(2) {
        text-align: left;
        }
    .footer-widgets>div:nth-child(3) {
        text-align: left;
        }
    }

/* Contact Form */
.wpcf7 form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
    }
.wpcf7 form input[type="text"], 
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="url"],
.wpcf7 form select,
.wpcf7 form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    }
.wpcf7 form input:focus,
.wpcf7 form select:focus,
.wpcf7 form textarea:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.2);
    outline: none;
    }
.wpcf7 form input[type="submit"] {
    padding: 10px 20px;
    background-color: #00162c;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    }
.wpcf7 form input[type="submit"]:hover {
    background-color: #002141;
    }
.wpcf7 form p {
    margin-bottom: 14px;
    }

/* Brand Logo Header */
.brand-header-section {
    background-color: #111;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
    }
.brand-header {
    font-size: 20px;
    padding: 10px 0 10px 0;
    }   
.brand-header-logo {
    text-align: center;
    }
.brand-header-logo img {
    max-height: 80px;
    }

@media screen and (min-width: 62rem) {
    .brand-header-section{
        padding: 30px 0;
        margin-bottom: 50px;
        }
    }

/* Brand Social Media Icons */
.brand-socials-section {
    background-color: #e0e0e0;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #fff;
    margin: 20px 0 20px 0;
    }
.brand-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: var(--padding-lg);
    padding-bottom: var(--padding-lg);
    }
.brand-socials .container {
    padding: 40px 25px 40px 25px;
    }
.brand-socials img{
    opacity: 0.8;
    transition: transform 0.3s ease;
    }
.brand-socials img:hover {
    opacity: 1;
    transform: scale(1.1);
    }
.brand-socials-logo img {
    display: block;
    height: 50px;
    max-height: 50px;
    }
.brand-socials .brand-socials-links {
    display: flex;
    gap: 10px;
    }
.brand-socials .brand-socials-links a img {
    width: 32px;
    height: 32px;
    display: block;
    }

/* Brand Landing Page */
.brands-section {
    padding: 50px 0 50px 0;
    }
.brands-section-home {
    padding: 50px 0 100px 0;
    background: #e0e0e0;
    border-top: 1px solid rgb(214, 214, 214);
    border-bottom: 1px solid rgb(255, 255, 255);
    }
.brand-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    }
.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
    border-radius: 10px;
    }
.brand-item img {
    height: 100px;
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
    }
.brand-item:hover img {
    transform: scale(1.1);
    }

/* Product grid */
.product-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    display: grid;
    gap: var(--gap-lg)
    }
.product-item{
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    }
.product-item-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    }
.product-content{
    padding: 0 20px 20px 20px;
    }
.product-content h1, 
.product-content h2{
    font-size: 2.5rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    }
.product-content h3{
    font-size: 2rem;
    margin: 20px 0 30px 0;
    }
.product-content h4{
    margin: 0 0 10px 0;
    font-size: var(--font-size-title-xs);
    }
.product-content .wysiwyg{
    font-size: 1.1rem;
    }
.product-image {
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    }
.bottle-size-selector {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
.bottle-size-images {
    max-width: 320px;
    overflow: hidden;
    margin: 0 auto;
    }
.size-image-wrapper img {
    max-height: 420px;
    }
.size-image-wrapper a img {
    transition: transform 0.4s ease;
    }
.product-image:hover a img {
    transform: scale(1.05);
    }
.bottle-size-icons {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 0.5em;
    padding: 6px 10px;
    border-radius: 6px;
    }
.size-tab {
    cursor: pointer;
    opacity: 0.5;
    color: #fff;
    align-items: center;
    background: none;
    border: 0;
    font-size: 12px;
    font-weight: bold;
    }
.size-tab img {
    width: 25px;
    margin: 0 0 10px 0;
    }
.size-tab.active {
    border-color: #000;
    opacity: 0.9;
    }
.vitamins-column {
    margin-bottom: 20px;
    }
.vitamin-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    }
.vitamin-item {
    margin: 0;
    }

/* Desktop two-column layout */
@media screen and (min-width: 62rem) {
    .product-item-grid {
        grid-template-columns: 5fr 7fr;
        }
    .product-item.even .product-item-grid {
        direction: rtl;
        }
    .product-item.even .product-item-grid>* {
        direction: ltr;
        }
    .product-item.even .bottle-size-icons {
        right: auto;
        left: 10px;
        }
    .size-image-wrapper img{
        max-height: none;
        }
    .product-content h1, .product-content h2 {
        font-size: 4rem;
        margin: 0px 0 20px 0;
        }
    .product-content{
        padding: 50px;
        }
    }

/* Campaigns List  */
.promo-section {
    padding: 30px 0 80px 0;
    }
.promo-section-home{
    background: #e0e0e0;
    border-top: 1px solid rgb(214, 214, 214);
    border-bottom: 1px solid rgb(255, 255, 255);
    }
.promo-grid {
    display: grid;
    gap: 1.5rem;
    }
.promo-item {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    }
.promo-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
    }
.promo-heading{
    padding: 30px;
    }
.promo-heading h3{
    font-size: var(--font-size-box-lg);
    color: #fff;
    font-weight: 600;
    margin: 0;
    }
.promo-heading h3 a{
    color: #fff;
    }
.promo-date {
    font-size: 1.2rem;
    color: #fff;
    margin: 15px 0 5px 0;
    }
.promo-content{
    padding: 30px;
    }
.promo-content p{
    margin: 0;
    }
.promo-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2.2rem;
    line-height: 1.2;
    }
.promo-featured-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    }
@media (min-width: 62rem) {
    .promo-content{
        padding: 30px 100px;
        }
    .promo-heading{
        padding: 25px 100px;
        }
}


/* Campaigns */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    }
.contest-meta {
    padding: 30px 30px 20px 30px;
    margin: 16px 0 34px;
    background-color: #2b2b2b;
    border-radius: 10px;
    }
.contest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0;
    }
.contest-item dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #ccc;
    margin-bottom: 10px;
    }
.contest-item dd {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    }
.contest-item dd a.link{
    color: #fff;
    }
.contest-item dd a.link:hover{
    text-decoration: underline;
    }
@media (min-width: 62rem) {
    .contest-grid {
        grid-template-columns: repeat(4, 1fr);
        }
    }

/* Network List */    
.network-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    }
.network-list h2{
    font-size: var(--font-size-box-lg);
    }
@media (min-width: 62rem) {
        .network-list {
            grid-template-columns: repeat(6, 1fr);
        }
    }
.network-item {
    padding: 8px;
    background-color: #ffffff70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    }
.network-item img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    }

/* Network Cta */    
.network-section {
    background-color: #e0e0e0;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #fff;
    }
.network {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 40px;
    padding-bottom:40px;
    }

/* Popup */
.general-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    }
body.no-scroll {
    overflow: hidden;
    height: 100vh;
    }
.general-popup-title {
    margin: 5px 0 20px 0;
    font-size: var(--font-size-title-sm);
    }
.general-popup.active {
    display: flex;
    animation: popupFade 0.3s ease forwards;
    }
.general-popup-inner {
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    background: #fff;
    padding: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: popupScale 0.3s ease forwards;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    font-size: var(--font-size-sm);
    }
.general-popup-inner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    }
.general-popup-header{
    border-bottom: 1px solid #ccc;
    }
.general-popup-body {
    overflow-y: auto;
    flex: 1;
    }
.general-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    line-height: 1;
    z-index: 2;
    }
.general-popup-close:hover {
    color: #692e76;
    }
@keyframes popupFade {
    from {
        opacity: 0
        }
    to {
        opacity: 1
        }
    }
@keyframes popupScale {
    from {
        transform: scale(0.9);
        opacity: 0
        }
    to {
        transform: scale(1);
        opacity: 1
        }
    }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px;
    font-size: 0.9rem;
    color: #333;
    background-color: #ececec;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
    margin: 0 5px 5px 0;
    border-radius: 5px;
    }
.btn:hover {
    background-color: #333 !important;
    color: #fff !important;
    }
.btn-large{
    font-size: 1.2rem;
    padding: 15px 20px 15px 20px;
    background-color: #333;
    color: #fff;
    font-size: var(--font-size-sm);
    border-radius: 5px;
    }
.btn-large:hover{
    background-color: #fff !important;
    color: #333 !important;
    }

/* News Listing */
.news-section {
    padding: 50px 0 50px 0;
    }
.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    }
@media (min-width: 62rem) {
    .news-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
.news-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    }
.news-card a.thumb-link {
    position: relative;
    display: block;
    overflow: hidden;
    }
.news-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease-out;
    }
.news-card a:hover img:first-child {
    transform: scale(1.1);
    }
.news-card-cats {
    border-top: 1px solid #ececec;
    padding: 20px 0 0px 0;
    color: #999;
    }
.news-card-cats a {
    color: #666;
    }
.news-card-cats a:hover {
    text-decoration: underline;
    }
.news-card-date {
    font-size: var(--font-size-sm);
    color: #fff;
    margin-bottom: 0.3rem;
    }
.news-card-heading{
    padding: 15px 25px 15px 25px;
    color: #fff;
    }
.news-card-content {
    padding: 25px;
    }
.news-card-content p{
    margin: 0;
    color: var(--text-link-color);
    }
.news-card-footer {
    padding: 0 25px 25px 25px;
    }
.news-card-title {
    margin: 5px 0 10px 0;
    font-weight: 600;
    font-size: var(--font-size-box-lg);
    }
.news-card-title a{
    color: #fff;
    }
.single-news-date {
    padding-top: 20px;
    font-size: var(--font-size-sm);
    color: #666;
    }
/* News Card Video Overlay */
.video-overlay {
    position: absolute;
    position: absolute;
    width: 20% !important;
    height: auto !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    pointer-events: none;
    }