/* Base Reset */
.swpb-promo-bar {
    width: 100%; box-sizing: border-box; font-family: inherit;
    display: flex; align-items: center; justify-content: center;
    position: relative; margin-bottom: 20px; text-decoration: none;
    transition: all 0.3s ease;
}
.swpb-promo-bar:hover { opacity: 0.95; cursor: pointer; }
.swpb-wrap { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.swpb-main h4 { margin: 0; line-height: 1.2; font-weight: 800; font-size: 1.1em; }
.swpb-main span { opacity: 0.9; font-size: 0.95em; }
.swpb-btn { background: rgba(0,0,0,0.2); padding: 8px 16px; border-radius: 4px; font-weight: bold; white-space: nowrap; margin-left: 15px; }

/* Style 1: Minimalist */
.swpb-style-1 { border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Style 2: Scalloped (Wavy Bottom) */
.swpb-style-2 {
    --r: 12px;
    padding-bottom: calc(10px + var(--r));
    mask: 
        linear-gradient(#000 0 0) 0 0 / 100% calc(100% - var(--r)) no-repeat,
        radial-gradient(farthest-side, #000 98%, #0000) 0 100% / calc(2 * var(--r)) calc(2 * var(--r)) repeat-x;
    -webkit-mask: 
        linear-gradient(#000 0 0) 0 0 / 100% calc(100% - var(--r)) no-repeat,
        radial-gradient(farthest-side, #000 98%, #0000) 0 100% / calc(2 * var(--r)) calc(2 * var(--r)) repeat-x;
}

/* Style 3: Neo-Brutalist */
.swpb-style-3 {
    border: 3px solid #000; box-shadow: 5px 5px 0px #000;
    font-family: 'Courier New', monospace; text-transform: uppercase;
}
.swpb-style-3 .swpb-btn { background: #000; color: #fff; border-radius: 0; }

/* Style 4: Glassmorphism */
.swpb-style-4 {
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.2) !important; /* Force translucent */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Style 5: Floating Card */
.swpb-style-5 {
    width: 95%; margin: 20px auto; border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2);
}

/* Style 6: Split Screen */
.swpb-style-6 { padding: 0; border-radius: 0; align-items: stretch; overflow: hidden; }
.swpb-split-l { flex: 0 0 40%; padding: 20px; display: flex; align-items: center; justify-content: center; text-align: center; }
.swpb-split-r { flex: 1; padding: 20px; display: flex; align-items: center; gap: 10px; }

/* Style 7: Cyberpunk */
.swpb-style-7 {
    border-top: 2px solid cyan; border-bottom: 2px solid magenta;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    background: #050505 !important;
}
.swpb-style-7 h4 { color: cyan; text-shadow: 0 0 5px cyan; }
.swpb-style-7 span { color: #fff; }

/* Style 8: Gradient Mesh */
.swpb-style-8 { background-size: 200% 200% !important; animation: swpb-mesh 6s ease infinite; }
@keyframes swpb-mesh { 0% {background-position:0% 50%} 50% {background-position:100% 50%} 100% {background-position:0% 50%} }

/* Mobile */
@media (max-width: 768px) {
    .swpb-wrap, .swpb-promo-bar { flex-direction: column; text-align: center; }
    .swpb-btn { margin: 10px 0 0 0; }
    .swpb-split-l, .swpb-split-r { width: 100%; justify-content: center; }
}