/* Veristzon base tokens */
:root{
  --vz-radius:14px;
  --vz-shadow:0 2px 8px rgba(0,0,0,.06);
}
.vz-btn-primary, .vz-btn-buy, .edd-submit{
  display:inline-block; padding:.6rem .9rem; border-radius:10px; border:0;
  background:#16a34a; color:#fff; font-weight:700; cursor:pointer;
}
.vz-card{box-shadow:var(--vz-shadow); border-radius:var(--vz-radius); background:#fff; border:1px solid #e5e7eb}
.container{max-width:1200px; margin:0 auto; padding:0 1rem}
/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    padding-top: 90px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo and text */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo img {
    height: 60px;
    width: auto;
}
.logo-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #002147;
    margin-top: 0.3rem;
}

/* Primary menu */
.primary-menu {
    display: flex;
}
.primary-menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.primary-menu a {
    text-decoration: none;
    color: #002147;
    font-weight: bold;
    transition: color 0.3s ease;
}
.primary-menu a:hover {
    color: #7FBF4D;
}

/* Dropdown styles */
.primary-menu .menu-item-has-children {
    position: relative;
}
.primary-menu .menu-item-has-children > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}
.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 1rem;
    min-width: 200px;
    border-radius: 4px;
    z-index: 1001;
}
.primary-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.primary-menu .sub-menu li {
    margin-bottom: 0.5rem;
}
.primary-menu .sub-menu a {
    font-weight: normal;
}

/* Cart icon */
.primary-menu .cart a {
    font-size: 1.2rem;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #002147;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    line-height: 1;
}

/* Footer styles */
.veristzon-footer {
    background: linear-gradient(135deg, #002147 0%, #7FBF4D 100%);
    color: #ffffff;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}
.veristzon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.footer-column {
    flex: 1;
    min-width: 200px;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}
.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-column ul li a:hover {
    color: #f9f9f9;
    transform: translateX(5px);
}

/* Social media icons */
.footer-column.social ul {
    display: flex;
    gap: 15px;
}
.footer-column.social ul li a {
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-column.social ul li a:hover {
    color: #7FBF4D;
    transform: scale(1.2);
}

/* Copyright */
.copyright {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    color: #f9f9f9;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-column {
        width: 100%;
    }
    .footer-column.social ul {
        justify-content: flex-start;
    }
}
@media (max-width: 1024px) {
    .primary-menu {
        display: none;
        width: 100%;
        background-color: #f9f9f9;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    .primary-menu.active {
        display: block;
    }
    .primary-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding: 0.5rem 1rem;
        background-color: #fff;
    }
    .mobile-toggle {
        display: inline-block;
        order: 2;
    }
    .logo {
        flex: 1;
        order: 1;
    }
}

/* Accessibility */
.primary-menu a:focus,
.mobile-toggle:focus {
    outline: 2px solid #7FBF4D;
    outline-offset: 2px;
}