:root[data-theme="marketing"] {
    --bg-primary: #fff8ef;
    --bg-secondary: #f0d7bf;
    --text-primary: #5f3419;
    --text-secondary: #9c4f2d;
    --accent-primary: #d89a34;
    --accent-secondary: #a83232;
    --accent-third: #2a5ea8;
    --border-color: #f0d7bf;
}

[data-theme="marketing"] .theme-bg {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="marketing"] .hero-gradient {
    background: linear-gradient(120deg,
            #d89a34 0%,
            #a83232 50%,
            #2a5ea8 100%);
}

[data-theme="marketing"] .theme-card {
    background: #ffffff;
    border-color: rgba(95, 52, 25, 0.15);
    backdrop-filter: none;
    box-shadow: 0 10px 25px -5px rgba(95, 52, 25, 0.1);
}