:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --accent: #F97316;
    --dark: #0F172A;
    --light: #F8FAFC;
    --gradient-1: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
    --gradient-2: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    --glass: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    overflow-x: hidden;
    color: var(--dark);
    background: var(--light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-content .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer !important;
    border: none !important;
}

.btn.btn-primary {
    background: white !important;
    color: var(--primary) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.btn.btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.btn.btn-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Chat Window Mockup */
.chat-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: floatUp 1s ease-out, float 6s ease-in-out 1s infinite;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.chat-header {
    background: var(--gradient-1);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}

.avatar::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #10B981;
    border: 3px solid white;
    border-radius: 50%;
    bottom: -2px;
    right: -2px;
}

.user-info h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.user-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

button.chat-action-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: none;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

/* Pinned Message Banner */
.pinned-message-banner {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pin-icon {
    color: var(--accent);
    font-size: 1.1rem;
    transform: rotate(45deg);
}

.pinned-message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pinned-message-label {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pinned-message-text {
    font-size: 13px;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.close-pinned {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border: none;
    color: #64748B !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.close-pinned:hover {
    background: rgba(0, 0, 0, 0.1) !important;
}

.chat-messages {
    padding: 24px;
    height: 400px;
    overflow-y: auto;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.message {
    margin-bottom: 16px;
    animation: slideIn 0.4s ease-out;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-wrapper {
    position: relative;
}

.message-actions {
    position: absolute;
    top: -10px;
    right: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: row;
    gap: 4px;
    padding: 4px;
    z-index: 10;
}

.message-action-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    background: transparent !important;
    border: none;
    color: #64748B !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.message-action-btn:hover {
    background: #F1F5F9 !important;
    color: var(--primary) !important;
}

.message-action-btn.pinned {
    color: var(--accent) !important;
}

.message.received .message-bubble {
    background: white;
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.message.sent {
    justify-content: flex-end;
}

.message.sent .message-bubble {
    background: var(--gradient-1);
    color: white;
}

.message.pinned-msg .message-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--accent);
    border-radius: 2px;
}

.forwarded-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 4px;
    font-style: italic;
}

.forwarded-label i {
    font-size: 0.85rem;
}

.message-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    position: relative;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}

.voice-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gradient-1);
    border-radius: 16px;
    max-width: 75%;
    margin-left: auto;
}

.voice-play-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: white !important;
    border: none !important;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.wave-bar {
    width: 3px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes wave {

    0%,
    100% {
        height: 12px;
    }

    50% {
        height: 24px;
    }
}

.voice-time {
    color: white;
    font-size: 0.85rem;
    opacity: 0.9;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 16px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #94A3B8;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

.chat-input {
    padding: 20px 24px;
    background: white;
    border-top: 1px solid #E2E8F0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.input-actions {
    display: flex;
    gap: 8px;
}

button.input-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: #F1F5F9;
    border: none;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

button.input-btn:hover {
    background: var(--primary) !important;
    color: white !important;
}

.chat-input button {
    width: auto;
    height: auto;
}

.input-field {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s;
}

.input-field:focus {
    border-color: var(--primary);
}

/* Section Styles */
.section {
    padding: 120px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748B;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748B;
    line-height: 1.7;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.demo-chat-window {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Premium Section */
.premium-section {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-2);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-features {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.premium-feature i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-value {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748B;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-grid .footer-contact-table i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-dropdown-content {
    top: 10px;
    border: none;
    float: none;
    border-radius: 0px 0px 4px 4px;
}

.logo-nav-left1 ul li {
    border-bottom: solid;
    border-width: 2px;
    border-color: transparent;
}

/* ========================================
       FRESH MODERN POPULAR PRODUCTS SECTION
       ======================================== */

.popular-products-section {
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
}

.popular-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.popular-products-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.popular-products-section .hdg {
    color: #fff !important;
}

.popular-products-section .heading-bar {
    display: none !important;
}

.popular-products-section .section-subtitle {
    color: #fff;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.recent-grids {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 1px solid #E2E8F0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.recent-grids:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: #CBD5E1 !important;
}

.recent-left {
    position: relative !important;
    overflow: hidden !important;
    background: #F8FAFC !important;
}

.recent-left>a {
    /* position: relative !important; */
    display: block !important;
    width: 100% !important;
}

.recent-left img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.recent-grids:hover .recent-left img {
    transform: scale(1.05) !important;
}

.product-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #0EA5E9 !important;
    z-index: 2 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.recent-right {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex: 1 !important;
}

.best2 {
    margin: 0 !important;
    min-height: auto !important;
}

.best2 a {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.4 !important;
    transition: color 0.2s ease !important;
}

.best2 a:hover {
    color: #0EA5E9 !important;
}

.product-info-grid {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    align-items: center !important;
    padding-top: 12px !important;
    border-top: 1px solid #F1F5F9 !important;
    margin-top: auto !important;
}

.block {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.block i {
    color: #FBBF24 !important;
    font-size: 0.9rem !important;
}

.rating-count {
    font-size: 0.8rem !important;
    color: #94A3B8 !important;
    margin-left: 6px !important;
}

.price-in1 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0EA5E9 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.quick-view-btn {
    position: absolute !important;
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    opacity: 0 !important;
    background: #0EA5E9 !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px 8px 0px 0px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    z-index: 3 !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3) !important;
}

.recent-grids:hover .quick-view-btn {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.quick-view-btn:hover {
    background: #0284C7 !important;
    color: #fff !important;
}

.product-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 8px !important;
}

.product-tag {
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
    background: #F1F5F9 !important;
    color: #475569 !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
}

.popular-products-slider {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.popular-products-slider .owl-stage-outer {
    padding: 10px 0px 20px !important;
}

.popular-products-slider .owl-item {
    padding: 0 10px !important;
    height: 380px;
}

.popular-products-slider .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    gap: 8px;
}

.popular-products-slider .owl-nav button {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: #475569 !important;
    font-size: 1.2rem !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.popular-products-slider .owl-nav button:hover {
    background: #0EA5E9 !important;
    color: white !important;
    border-color: #0EA5E9 !important;
}

.popular-products-slider .owl-nav button.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.popular-products-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.popular-products-slider .owl-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #CBD5E1 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    padding: 0 !important;
}

.popular-products-slider .owl-dot.active {
    width: 24px !important;
    border-radius: 4px !important;
    background: #0EA5E9 !important;
}

.recent-row {
    margin: 0 !important;
}

.thumbnail {
    border: none !important;
    padding: 0 !important;
}

.bounce-hover {
    animation: none !important;
}

.clearfix {
    display: none !important;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.list-unstyled li:hover {
    transform: translateY(-5px);
}

.single-features-item {
    transition: transform 0.5s ease;
}

.single-features-item:hover {
    transform: translateY(-10px);
}

a {
    text-decoration: none;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.row.cbn_products_slider>*,
.row.products-slider>* {
    padding-right: 0px;
    padding-left: 0px;
}

.cart_total_wrap {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* ============================================ TABLET RESPONSIVE (768px - 1024px) ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.3rem;
    }

    .hero-content .description {
        font-size: 1rem;
    }

    .chat-messages {
        height: 350px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .avatar::after {
        width: 12px;
        height: 12px;
    }

    .section {
        padding: 80px 20px;
    }

    .section-header h2,
    .popular-products-section .hdg {
        font-size: 2.8rem !important;
    }

    .section-header p,
    .popular-products-section .section-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 30px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .premium-grid {
        gap: 50px;
    }

    .premium-section h2 {
        font-size: 2.8rem !important;
    }

    .cta-section h2 {
        font-size: 2.8rem;
    }

    .popular-products-section .hdg {
        font-size: 2.2rem !important;
    }

    .popular-products-section .section-subtitle {
        font-size: 1rem;
    }

    .recent-right {
        padding: 18px !important;
    }

    .best2 a {
        font-size: 1rem !important;
    }

    .price-in1 {
        font-size: 1rem !important;
    }

    .popular-products-slider .owl-nav {
        top: -65px;
    }

    .popular-products-slider .owl-nav button {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (min-width: 768px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1024px) {
    .mail-grids-wrap-contact .mail-top {
        flex-wrap: wrap;
    }

    .mail-grids-wrap-contact .mail-grid {
        width: 100%;
    }
}

/* ============================================ MOBILE RESPONSIVE (320px - 768px) ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .hero-content .description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .cta-group {
        justify-content: center;
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem !important;
        width: 100%;
        justify-content: center;
    }

    .chat-mockup {
        border-radius: 16px;
    }

    .chat-header {
        padding: 16px 20px;
    }

    .avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .avatar::after {
        width: 10px;
        height: 10px;
    }

    .user-info h3 {
        font-size: 0.9rem;
    }

    .user-info p {
        font-size: 0.75rem;
    }

    .chat-action-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem;
    }

    .chat-actions {
        gap: 6px;
    }

    .chat-actions button:last-child {
        display: none;
    }

    .pinned-message-banner {
        padding: 10px 16px;
        gap: 8px;
    }

    .pin-icon {
        font-size: 0.95rem;
    }

    .pinned-message-label {
        font-size: 0.7rem;
    }

    .pinned-message-text {
        font-size: 12px;
    }

    .close-pinned {
        width: 20px !important;
        height: 20px !important;
        font-size: 13px;
    }

    .chat-messages {
        padding: 16px;
        height: 300px;
    }

    .message {
        margin-bottom: 12px;
    }

    .message-bubble {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .message-time {
        font-size: 0.7rem;
    }

    .voice-message {
        padding: 10px 12px;
        gap: 10px;
        max-width: 85%;
    }

    .voice-play-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .wave-bar {
        height: 16px;
    }

    .voice-time {
        font-size: 0.8rem;
    }

    .chat-input {
        padding: 12px 16px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .input-actions {
        gap: 6px;
    }

    .input-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem;
    }

    .input-field {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 100%;
    }

    .chat-input .btn-primary {
        width: 100%;
        margin-top: 8px;
        padding: 10px 20px !important;
    }

    .section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2,
    .popular-products-section .hdg {
        font-size: 2rem !important;
        margin-bottom: 16px;
    }

    .section-header p,
    .popular-products-section .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-section {
        padding: 60px 15px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .premium-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .premium-section h2 {
        font-size: 2rem !important;
        margin-bottom: 16px;
    }

    .premium-section p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .premium-features {
        gap: 16px;
        margin-top: 24px;
    }

    .premium-feature {
        padding: 16px;
        gap: 12px;
    }

    .premium-feature i {
        font-size: 1.3rem;
    }

    .premium-feature strong {
        font-size: 0.95rem;
    }

    .premium-feature p {
        font-size: 0.85rem !important;
    }

    .demo-chat-window>div {
        padding: 40px 20px !important;
        min-height: 350px !important;
    }

    .demo-chat-window .live-call-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .demo-chat-window>div>div:first-of-type {
        gap: 12px !important;
    }

    .demo-chat-window i.bi-person-fill {
        font-size: 3rem !important;
    }

    .demo-chat-window>div>div:last-of-type {
        bottom: 20px;
        gap: 12px;
    }

    .demo-chat-window>div>div:last-of-type button {
        width: 48px !important;
        height: 48px !important;
    }

    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .cta-section>.container>p:first-of-type {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }

    .cta-section>.container>p:last-of-type {
        font-size: 0.85rem;
        margin-top: 16px;
    }

    .popular-products-section .section-header {
        margin-bottom: 35px;
    }

    .popular-products-section .hdg {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }

    .popular-products-section .section-subtitle {
        font-size: 0.95rem;
    }

    .recent-grids {
        border-radius: 12px !important;
    }

    .recent-grids:hover {
        transform: translateY(-2px) !important;
    }

    .recent-right {
        padding: 16px !important;
        gap: 10px !important;
    }

    .best2 a {
        font-size: 0.95rem !important;
    }

    .product-info-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding-top: 10px !important;
    }

    .block {
        justify-content: space-between !important;
    }

    .price-in1 {
        font-size: 1rem !important;
        text-align: right !important;
    }

    .product-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }

    .product-tags {
        gap: 4px !important;
        margin-top: 6px !important;
    }

    .product-tag {
        font-size: 0.7rem !important;
        padding: 3px 8px !important;
    }

    .quick-view-btn {
        bottom: 12px !important;
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }

    .popular-products-slider .owl-nav {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .popular-products-slider .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .popular-products-slider .owl-dots {
        margin-top: 20px;
    }

    .popular-products-slider .owl-dot {
        width: 6px !important;
        height: 6px !important;
    }

    .popular-products-slider .owl-dot.active {
        width: 20px !important;
    }

    .popular-products-slider .owl-stage-outer {
        padding: 10px 0px 15px !important;
    }

    .popular-products-slider .owl-item {
        padding: 0 5px !important;
    }

    .footer-grids {
        text-align: center;
    }

    .footer-grid {
        margin-bottom: 30px;
    }

    .footer-grid h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-grid ul li,
    .footer-grid p {
        font-size: 0.9rem;
    }

    .footer-contact-table {
        margin: 0 auto;
    }

    .social-icon {
        justify-content: center;
    }

    .copy-section {
        padding: 20px 15px;
    }

    .copy-section>.container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .copy-left,
    .copy-right {
        width: 100%;
    }

    .popular-products-slider .owl-item {
        height: 100%;
    }
}

/* ============================================ SMALL MOBILE (320px - 480px) ============================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-content .description {
        font-size: 0.9rem;
    }

    .section-header h2,
    .popular-products-section .hdg {
        font-size: 1.75rem !important;
    }

    .section-header p,
    .popular-products-section .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem !important;
    }

    .chat-messages {
        height: 250px;
    }

    .feature-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .premium-section h2,
    .cta-section h2 {
        font-size: 1.75rem !important;
    }

    .popular-products-section .hdg {
        font-size: 1.6rem !important;
    }

    .popular-products-section .section-subtitle {
        font-size: 0.9rem;
    }

    .recent-right {
        padding: 14px !important;
    }

    .best2 a {
        font-size: 0.9rem !important;
    }

    .price-in1 {
        font-size: 1rem !important;
    }

    .popular-products-slider .owl-nav button {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2rem !important;
    }
}

/* ============================================ LANDSCAPE MOBILE FIX ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 15px;
    }

    .chat-messages {
        height: 250px;
    }

    .section {
        padding: 50px 15px;
    }

    .recent-left {
        aspect-ratio: 16/9 !important;
    }
}

@media (max-width:900px) {
    .container.gallary .row {
        margin-left: 0;
    }
}

@media(max-width:800px) {

    .arrival-grid,
    .cap-left {
        float: left;
        width: 50%;
    }

    .arrival-grid:nth-child(3),
    .arrival-grid:nth-child(4) {
        margin-top: 0;
        margin-bottom: 2em;
    }
}

@media (max-width:767px) {
    .content {
        padding: 15px 0px 0px 0px !important;
    }

    .grid_4 .col-md-8 p,
    .grid_4 .col-md-8 ol li {
        font-size: 14px !important;
    }

    .cd-hero__slider {
        height: calc(100vh - 40px);
    }

    .cd-hero__content h1 {
        font-size: 2rem;
    }

    .cd-hero__content p {
        font-size: 15px;
        line-height: 1.3;
    }
}

@media (max-width:600px) {
    .filter-search {
        position: relative;
        margin-bottom: 10px;
        margin-left: -15px;
        right: 0;
    }

    .arrival-grid,
    .cap-left {
        float: left;
        width: 100%;
    }

    .logo-nav-left img {
        height: 32px;
        margin: 15px 0 0 0px;
    }

    .logo-nav-left1 {
        margin-top: 0.3em;
    }

    .header-right2 {
        margin-top: 10px !important;
    }

    .arrival-grid:nth-child(2) {
        margin-top: 0;
        margin-bottom: 2em;
    }
}

.hero-content h1 {
    font-family: "Zalando Sans Expanded", sans-serif !important;
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content .subtitle {
    font-size: 24px;
}

.hero-content .description {
    font-size: 17.6px;
}

.btn {
    font-size: 16px !important;
}

.avatar {
    font-size: 17.6px;
}

.user-info h3 {
    font-size: 16px;
}

.user-info p {
    font-size: 13.6px;
}

.pin-icon {
    font-size: 17.6px;
}

.pinned-message-label {
    font-size: 12px;
}

.message-action-btn {
    font-size: 14.4px;
}

.forwarded-label {
    font-size: 12px;
}

.forwarded-label i {
    font-size: 13.6px;
}

.message-bubble {
    font-size: 15.2px;
}

.message-time {
    font-size: 12px;
}

.voice-time {
    font-size: 13.6px;
}

.input-field {
    font-size: 15.2px;
}

.section-header h2 {
    font-size: 56px;
}

.section-header p {
    font-size: 20px;
}

.feature-icon {
    font-size: 28.8px;
}

.feature-card h3 {
    font-size: 22.4px;
}

.premium-badge {
    font-size: 13.6px;
}

.premium-feature i {
    font-size: 24px;
}

.stat-value {
    font-size: 48px;
}

.cta-section h2 {
    font-size: 56px;
}

.product-badge {
    font-size: 12px !important;
}

.best2 a {
    font-size: 16.8px !important;
}

.block i {
    font-size: 14.4px !important;
}

.rating-count {
    font-size: 12.8px !important;
}

.price-in1 {
    font-size: 16px !important;
}

.quick-view-btn {
    font-size: 14.4px !important;
}

.product-tag {
    font-size: 12px !important;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) and (min-width: 769px) {

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content .subtitle {
        font-size: 20.8px;
    }

    .hero-content .description {
        font-size: 16px;
    }

    .avatar {
        font-size: 16px;
    }

    .section-header h2,
    .popular-products-section .hdg {
        font-size: 44.8px !important;
    }

    .section-header p,
    .popular-products-section .section-subtitle {
        font-size: 17.6px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 19.2px;
    }

    .stat-value {
        font-size: 40px;
    }

    .premium-section h2 {
        font-size: 44.8px !important;
    }

    .cta-section h2 {
        font-size: 44.8px;
    }

    .popular-products-section .hdg {
        font-size: 35.2px !important;
    }

    .popular-products-section .section-subtitle {
        font-size: 16px;
    }

    .best2 a {
        font-size: 16px !important;
    }

    .price-in1 {
        font-size: 16px !important;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content .subtitle {
        font-size: 17.6px;
    }

    .hero-content .description {
        font-size: 15.2px;
    }

    .btn {
        font-size: 14.4px !important;
    }

    .avatar {
        font-size: 14.4px;
    }

    .user-info h3 {
        font-size: 14.4px;
    }

    .user-info p {
        font-size: 12px;
    }

    .chat-action-btn {
        font-size: 14.4px;
    }

    .pin-icon {
        font-size: 15.2px;
    }

    .pinned-message-label {
        font-size: 11.2px;
    }
}

/* ================================================================
   SINGLE PRODUCT PAGE — styles moved from inline <style>
   ================================================================ */
body.single .header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100
}

.product-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080c12
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 55% at 8% 15%, rgba(0, 136, 204, .22) 0%, transparent 60%), radial-gradient(ellipse 50% 45% at 92% 85%, rgba(255, 107, 53, .12) 0%, transparent 55%), linear-gradient(160deg, #080c12 0%, #0a1628 40%, #080c12 100%)
}

.hero-noise-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E")
}

.hero-grid-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 136, 204, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 136, 204, .05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    animation: orbFloat 10s ease-in-out infinite
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 136, 204, .14);
    top: -150px;
    left: -120px;
    animation-delay: 0s
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 107, 53, .08);
    bottom: -100px;
    right: 8%;
    animation-delay: -4s
}

.hero-orb-3 {
    width: 220px;
    height: 220px;
    background: rgba(251, 191, 36, .07);
    top: 35%;
    right: 3%;
    animation-delay: -7s
}

.hero-orb-4 {
    width: 180px;
    height: 180px;
    background: rgba(0, 136, 204, .1);
    bottom: 20%;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 12s
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    25% {
        transform: translate(15px, -25px) scale(1.04)
    }

    50% {
        transform: translate(25px, 10px) scale(.97)
    }

    75% {
        transform: translate(-10px, 20px) scale(1.02)
    }
}

.hero-lines-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0, 136, 204, .15), transparent);
    transform-origin: top center
}

.hero-line:nth-child(1) {
    left: 15%;
    top: 10%;
    transform: rotate(15deg);
    height: 40%;
    opacity: .5
}

.hero-line:nth-child(2) {
    left: 85%;
    top: 20%;
    transform: rotate(-10deg);
    height: 35%;
    opacity: .4
}

.hero-line:nth-child(3) {
    left: 50%;
    top: 5%;
    transform: rotate(5deg);
    height: 20%;
    opacity: .3
}

.product-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 160px 0 110px
}

.product-hero-grid {
    display: flex;
    gap: 40px;
    align-items: center
}

.product-hero-info {
    color: #fff;
    width: 50%
}

.product-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: .75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Open Sans', sans-serif
}

.product-hero-breadcrumb a {
    color: #8b949e !important;
    text-decoration: none !important;
    transition: color .2s
}

.product-hero-breadcrumb a:hover {
    color: #0088cc !important
}

.product-hero-breadcrumb .bc-sep {
    color: rgba(0, 136, 204, .4);
    font-size: .6rem
}

.product-hero-breadcrumb .bc-current {
    color: #0088cc
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 136, 204, .18), rgba(0, 136, 204, .06));
    border: 1px solid rgba(0, 136, 204, .35);
    color: #5bc4f5;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
    backdrop-filter: blur(12px);
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #0088cc;
    border-radius: 50%;
    box-shadow: 0 0 8px #0088cc;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px #0088cc
    }

    50% {
        opacity: .5;
        box-shadow: 0 0 18px #0088cc, 0 0 30px rgba(0, 136, 204, .3)
    }
}

.product-hero-title {
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -.03em
}

.product-hero-title .title-highlight {
    background: linear-gradient(135deg, #4db8ff, #0088cc, #79d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.product-hero-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.product-hero-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif
}

.product-hero-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em
}

.product-hero-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #8b9eb0;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif
}

.product-hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px
}

.stars-display {
    display: flex;
    gap: 2px
}

.stars-display i {
    color: #fbbf24;
    font-size: .85rem
}

.rating-text {
    font-size: .82rem;
    color: #6e7f8d;
    font-family: 'Open Sans', sans-serif
}

.rating-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .1)
}

.product-hero-overview {
    color: #8b949e;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px;
    padding: 20px 24px;
    border-left: 3px solid rgba(0, 136, 204, .5);
    background: rgba(0, 136, 204, .04);
    border-radius: 0 10px 10px 0
}

.product-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0088cc, #0066aa);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px !important;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 8px 32px rgba(0, 136, 204, .4), inset 0 1px 0 rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden;
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif;
    letter-spacing: -.01em;
    height: 100% !important;
    width: fit-content !important
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transition: left .5s ease
}

.btn-add-cart:hover::before {
    left: 100%
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 136, 204, .5);
    background: linear-gradient(135deg, #009ae0, #0077bb)
}

.btn-add-cart-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, .04);
    color: #c8dae8 !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    cursor: pointer;
    text-decoration: none !important;
    transition: all .3s ease;
    backdrop-filter: blur(12px);
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif
}

.btn-add-cart-outline:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(0, 136, 204, .45);
    transform: translateY(-2px)
}

.trust-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #5a6e7d;
    font-size: .78rem;
    font-weight: 500;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 7px 12px;
    border-radius: 8px;
    transition: all .2s
}

.trust-badge:hover {
    background: rgba(0, 136, 204, .08);
    border-color: rgba(0, 136, 204, .2);
    color: #8bb8cc
}

.trust-badge i {
    color: #0088cc;
    font-size: .85rem
}

.product-hero-visual {
    position: relative;
    width: 50%
}

.product-image-card {
    background: rgba(15, 21, 32, .9);
    border: 1px solid rgba(0, 136, 204, .15);
    border-radius: 22px;
    overflow: visible;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), 0 40px 100px rgba(0, 0, 0, .6), 0 0 120px rgba(0, 136, 204, .06);
    position: relative
}

.product-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, .7), transparent);
    z-index: 1
}

.product-image-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, .3), transparent)
}

.product-image-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, .4);
    border-bottom: 1px solid rgba(48, 54, 61, .5);
    border-radius: 22px 22px 0 0;
    position: relative;
    z-index: 2
}

.window-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.window-dot:nth-child(1) {
    background: #ff5f57;
    box-shadow: 0 0 6px rgba(255, 95, 87, .4)
}

.window-dot:nth-child(2) {
    background: #febc2e;
    box-shadow: 0 0 6px rgba(254, 188, 46, .4)
}

.window-dot:nth-child(3) {
    background: #28c840;
    box-shadow: 0 0 6px rgba(40, 200, 64, .4)
}

.card-header-label {
    margin-left: auto;
    font-family: 'Open Sans', sans-serif;
    font-size: .7rem;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .5px
}

.product-image-main-wrap {
    padding: 16px;
    border-radius: 0 0 22px 22px;
    overflow: hidden
}

.product-main-slider {
    border-radius: 12px;
    overflow: hidden;
    background: #0a0f1a
}

.product-main-slider .slick-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    display: block;
    background: #fff
}

.product-main-slider .slick-prev,
.product-main-slider .slick-next {
    z-index: 10;
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, .6) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, .15) !important
}

.product-main-slider .slick-prev {
    left: 10px !important
}

.product-main-slider .slick-next {
    right: 10px !important
}

.product-main-slider .slick-prev:before,
.product-main-slider .slick-next:before {
    font-size: 20px !important;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: 100% !important
}

.product-nav-slider {
    margin-top: 10px;
    padding: 0 2px
}

.product-nav-slider .slick-slide {
    padding: 0 4px;
    cursor: pointer
}

.product-nav-slider .slick-slide img {
    width: 100%;
    height: 62px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    display: block;
    background: #fff;
    border: 2px solid transparent;
    transition: border-color .2s, opacity .2s;
    opacity: .6
}

.product-nav-slider .slick-current img,
.product-nav-slider .slick-slide:hover img {
    border-color: #0088cc;
    opacity: 1
}

.product-stat-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(8, 12, 18, .92);
    border: 1px solid rgba(0, 136, 204, .2);
    border-radius: 14px;
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    z-index: 10;
    animation: chipFloat 5s ease-in-out infinite
}

.product-stat-chip-1 {
    top: -18px;
    left: -24px;
    animation-delay: 0s
}

.product-stat-chip-2 {
    bottom: -30px;
    right: -24px;
    animation-delay: -2.5s
}

@keyframes chipFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.chip-icon.blue {
    background: rgba(0, 136, 204, .2);
    color: #5bc4f5
}

.chip-icon.green {
    background: rgba(40, 200, 64, .15);
    color: #28c840
}

.chip-text-label {
    font-size: .65rem;
    color: #5a6e7d;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px
}

.chip-text-val {
    font-size: .92rem;
    font-weight: 700;
    color: #e6edf3;
    line-height: 1.5;
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif
}

.product-details-modern {
    background: #fff;
    padding: 0
}

.section-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #080c12
}

.section-wave svg {
    display: block
}

.product-details-header {
    text-align: center;
    padding: 80px 0 60px;
    position: relative
}

.product-details-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 136, 204, .5), transparent)
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0088cc;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Open Sans', sans-serif
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(0, 136, 204, .4)
}

.product-details-heading {
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0d1117;
    letter-spacing: -.03em;
    margin-bottom: 0
}

.product-details-content-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px 80px
}

.product-details-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden
}

.product-details-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #0d1117, #161b22);
    border-bottom: 1px solid rgba(48, 54, 61, .8)
}

.details-box-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.details-box-dot:nth-child(1) {
    background: #ff5f57
}

.details-box-dot:nth-child(2) {
    background: #febc2e
}

.details-box-dot:nth-child(3) {
    background: #28c840
}

.details-box-title {
    color: #6e7f8d;
    font-size: .78rem;
    margin-left: 8px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif
}

.product-details-body {
    padding: 40px
}

.product-details-body h1,
.product-details-body h2,
.product-details-body h3,
.product-details-body h4,
.product-details-body h5,
.product-details-body h6 {
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    color: #0088cc !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    margin-bottom: 12px !important
}

.product-details-body h1 {
    font-size: 1.7rem !important
}

.product-details-body h2 {
    font-size: 1.5rem !important
}

.product-details-body h3 {
    font-size: 1.3rem !important
}

.product-details-body h4 {
    font-size: 1.15rem !important
}

.product-details-body h5,
.product-details-body h6 {
    font-size: 1rem !important
}

.product-details-body p {
    color: #374151 !important;
    font-size: 1rem !important
}

.product-details-body ul {
    padding-left: 0 !important;
    margin-bottom: 20px !important
}

.product-details-body ul li {
    list-style: none !important;
    position: relative;
    padding: 8px 0 8px 28px !important;
    color: #374151 !important;
    font-size: .97rem !important;
    border-bottom: 1px solid #f1f5f9
}

.product-details-body ul li:last-child {
    border-bottom: none
}

.product-details-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0088cc;
    font-weight: 700;
    font-size: .9rem
}

.product-details-body a {
    color: #0088cc !important;
    font-weight: 600 !important;
    text-decoration: underline !important
}

.product-details-body a:hover {
    color: #006faa !important
}

.product-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: #e8f4fd;
    border: 1px solid rgba(0, 136, 204, .2);
    color: #0055aa;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s
}

.feature-chip:hover {
    background: #0088cc;
    color: #fff;
    transform: translateY(-2px)
}

.cb_single-wl3 {
    padding: 0
}

@media(max-width:991px) {
    .product-hero-grid {
        flex-direction: column;
        gap: 60px
    }

    .product-hero-visual,
    .product-hero-info {
        width: 100%
    }

    .product-hero-inner {
        padding: 140px 0 70px
    }

    .product-stat-chip-1 {
        top: -10px;
        left: 0
    }

    .product-stat-chip-2 {
        bottom: 10px;
        right: 0
    }
}

@media(max-width:767px) {
    .product-hero-title {
        font-size: 1.8rem
    }

    .product-hero-price {
        font-size: 2.2rem
    }

    .btn-add-cart,
    .btn-add-cart-outline {
        width: 100% !important;
        justify-content: center
    }

    .product-details-body {
        padding: 24px
    }

    .product-details-header {
        padding: 60px 0 40px
    }

    .product-stat-chip {
        display: none
    }
}

@media(max-width:450px) {
    .product-details-content-wrap {
        padding: 0 0 60px
    }

    .trust-badge {
        width: 100%
    }
}


/* ================================================================
   PRODUCT LIST PAGES — Hero + Grid
   All with heavy overrides against style.css conflicts
   ================================================================ */

/* ── Hero ── */
.pl-hero {
    background: #080c12;
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    text-align: center;
}

.pl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(0, 136, 204, .2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(14, 165, 233, .12) 0%, transparent 60%),
        linear-gradient(160deg, #080c12 0%, #0a1628 50%, #080c12 100%);
}

.pl-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 136, 204, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 204, .04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.pl-hero-inner {
    position: relative;
    z-index: 2;
}

.pl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 136, 204, .18), rgba(0, 136, 204, .06));
    border: 1px solid rgba(0, 136, 204, .35);
    color: #5bc4f5;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.pl-hero h1 {
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.pl-hero h1 .hl {
    background: linear-gradient(135deg, #4db8ff, #0088cc, #79d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-hero>.pl-hero-inner>p,
.pl-hero .pl-hero-inner p.pl-hero-desc {
    color: #8b949e !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    max-width: 540px !important;
    margin: 0 auto 36px !important;
}

/* Override style.css input#filter-products — must be very specific */
.pl-hero #pl-search-input,
.pl-search-box #pl-search-input {
    width: 100% !important;
    padding: 13px 20px 13px 48px !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(0, 136, 204, .25) !important;
    border-bottom: 1px solid rgba(0, 136, 204, .25) !important;
    border-radius: 14px !important;
    color: #e6edf3 !important;
    font-size: .95rem !important;
    font-family: 'Open Sans', sans-serif !important;
    outline: none !important;
    backdrop-filter: blur(12px) !important;
    transition: all .3s ease !important;
    box-shadow: none !important;
}

.pl-hero #pl-search-input::placeholder {
    color: #5a6e7d !important;
}

.pl-hero #pl-search-input:focus,
.pl-hero #pl-search-input:hover {
    border-color: rgba(0, 136, 204, .6) !important;
    background: rgba(255, 255, 255, .1) !important;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, .1) !important;
    width: 100% !important;
}

.pl-search-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pl-search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.pl-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #5a6e7d;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.pl-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #080c12;
}

.pl-wave svg {
    display: block;
}

/* ── Filter tabs ── override style.css .categories.products ul li a */
.pl-grid-section .pl-filters {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    padding: 36px 20px 0 !important;
    text-align: center !important;
}

.pl-grid-section .pl-filters .pl-filter-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 20px !important;
    border-radius: 10px !important;
    font-size: .84rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all .2s ease !important;
    font-family: 'Open Sans', sans-serif !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    text-decoration: none !important;
    float: none !important;
}

.pl-grid-section .pl-filters .pl-filter-btn:hover,
.pl-grid-section .pl-filters .pl-filter-btn.active {
    background: #0088cc !important;
    color: #fff !important;
    border-color: #0088cc !important;
    border-bottom-color: #0088cc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 136, 204, .3) !important;
}

/* ── Grid wrapper ── */
.pl-grid-section {
    background: #fff;
    padding-bottom: 80px;
}

.pl-grid-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.pl-grid-section .zero-product-error {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    font-size: 1rem;
}

/* ════════════════════════════════════════════════
   THE CARD GRID — defeats .arrivals-grids flex,
   .col-md-4 float, .grid-arr min-height, .thumbnail
   ════════════════════════════════════════════════ */
.pl-card-grid {
    /* Grid, not old flex */
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    padding-top: 36px !important;
    /* Kill old styles */
    flex-wrap: unset !important;
    margin-top: 0 !important;
    float: none !important;
}

/* Each card item — kill col-md-4 float + width */
.pl-card-grid .pl-card-item {
    width: auto !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: unset !important;
    min-height: unset !important;
    max-height: unset !important;
    display: block !important;
}

/* The card box itself */
.pl-card-grid .pl-card-item .pl-card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    transition: all .3s cubic-bezier(.4, 0, .2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06) !important;
    /* Reset all old card styles */
    min-height: unset !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.pl-card-grid .pl-card-item .pl-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1) !important;
    border-color: rgba(0, 136, 204, .3) !important;
}

/* Image wrapper — fixed aspect ratio, no full-bleed */
.pl-card-grid .pl-card-item .pl-card .pl-img-wrap {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 200px !important;
    background: #f1f5f9 !important;
    display: block !important;
    float: none !important;
    margin: 0 !important;
    line-height: 0 !important;
    flex-shrink: 0 !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-img-wrap a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    float: none !important;
    position: static !important;
    z-index: auto !important;
}

/* Override ALL image rules from style.css */
.pl-card-grid .pl-card-item .pl-card .pl-img-wrap img,
.pl-card-grid .pl-card-item .pl-card .pl-img-wrap a img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    transition: transform .4s ease !important;
    border: none !important;
    border-bottom: none !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.pl-card-grid .pl-card-item .pl-card:hover .pl-img-wrap img {
    transform: scale(1.05) !important;
}

/* Price badge */
.pl-card-grid .pl-card-item .pl-card .pl-price-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    background: #0088cc !important;
    color: #fff !important;
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: .9rem !important;
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 136, 204, .35) !important;
    z-index: 3 !important;
    width: auto !important;
    letter-spacing: -.02em !important;
}

/* Hover overlay */
.pl-card-grid .pl-card-item .pl-card .pl-img-overlay {
    position: absolute !important;
    bottom: 0px;
    width: 100%;
    background: linear-gradient(to top, rgba(8, 12, 18, .65) 0%, transparent 55%) !important;
    opacity: 0 !important;
    transition: opacity .3s ease !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.pl-card-grid .pl-card-item .pl-card:hover .pl-img-overlay {
    opacity: 1 !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-img-overlay a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 20px !important;
    background: rgba(255, 255, 255, .95) !important;
    color: #0088cc !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border-radius: 9px 9px 0px 0px !important;
    text-decoration: none !important;
    font-family: 'Open Sans', sans-serif !important;
    border-bottom: none !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-img-overlay a>i {
    font-size: 16px;
}

.pl-card-grid .pl-card-item .pl-card .pl-btn>i {
    font-size: 15px;
}

.pl-card-grid .pl-card-item .pl-card .pl-img-overlay a:hover {
    background: #0088cc !important;
    color: #fff !important;
}

/* Card body */
.pl-card-grid .pl-card-item .pl-card .pl-body {
    padding: 18px 20px 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 0 !important;
    /* kills .grid-arr .women margin-top:-21px */
    background: #fff !important;
}

/* Category chip */
.pl-card-grid .pl-card-item .pl-card .pl-cat {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: .7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #0088cc !important;
    background: #e8f4fd !important;
    border: 1px solid rgba(0, 136, 204, .2) !important;
    padding: 3px 9px !important;
    border-radius: 6px !important;
    margin-bottom: 9px !important;
    width: fit-content !important;
    font-family: 'Open Sans', sans-serif !important;
}

/* Title */
.pl-card-grid .pl-card-item .pl-card .pl-title {
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    font-size: .97rem !important;
    font-weight: 700 !important;
    color: #0d1117 !important;
    line-height: 1.35 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -.01em !important;
    text-decoration: none !important;
    display: block !important;
    transition: color .2s !important;
    /* Kill old .women h6 / .grid-arr .women h6 a */
    text-transform: none !important;
    font-size: .97rem !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-title:hover {
    color: #0088cc !important;
}

/* Description */
.pl-card-grid .pl-card-item .pl-card .pl-desc {
    color: #64748b !important;
    font-size: .85rem !important;
    line-height: 1.6 !important;
    margin: 0 0 14px 0 !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Footer */
.pl-card-grid .pl-card-item .pl-card .pl-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 14px !important;
    margin-top: auto !important;
    border-top: 1px solid #f1f5f9 !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-price {
    font-family: 'Zalando Sans Expanded', 'Open Sans', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #0088cc !important;
    letter-spacing: -.03em !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-style: normal !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 7px 16px !important;
    background: linear-gradient(135deg, #0088cc, #0066aa) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: .8rem !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    transition: all .2s ease !important;
    font-family: 'Open Sans', sans-serif !important;
    border: none !important;
    white-space: nowrap !important;
}

.pl-card-grid .pl-card-item .pl-card .pl-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 136, 204, .4) !important;
    background: linear-gradient(135deg, #009ae0, #0077bb) !important;
    color: #fff !important;
}

/* ── Responsive ── */
@media(max-width:1024px) {
    .pl-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .pl-hero {
        padding: 120px 0 70px;
    }
}

@media(max-width:600px) {
    .pl-card-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .pl-hero {
        padding: 110px 0 60px;
    }

    .pl-hero h1 {
        font-size: 2rem !important;
    }

    .pl-filters {
        gap: 6px !important;
        padding: 24px 16px 0 !important;
    }

    .pl-filter-btn {
        padding: 7px 14px !important;
        font-size: .8rem !important;
    }

    .pl-grid-container {
        padding: 0 16px;
    }
}

/* ================================================================
   LEGACY SERVICE PAGES  —  custom-cms-experts / ecommerce-experts
   (and any other page using the same old wp-page-about-area template)
   These classes are already partly in style.css — these entries
   add the missing inline overrides so the <style> block can be removed.
   ================================================================ */

/* .card / .circle  — scoped inside .wp-page-about-area to avoid Bootstrap conflicts */
.wp-page-about-area .card {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
}

.wp-page-about-area .card h3 {
    color: #0073b1;
    font-weight: bold;
    margin-top: 0;
}

.wp-page-about-area .card p {
    color: #777;
    margin-bottom: 0;
}

.wp-page-about-area .circle {
    width: 60px;
    height: 60px;
    background-color: #d4e6e2;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    margin-right: 20px;
}

.wp-page-about-area .circle .icon {
    border: 2px solid #0073b1;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

/* SVG colour overrides used in ecommerce-experts image */
g#Awning>g>g>polygon {
    fill: #0088cc !important;
}

g.leaves>g>path {
    fill: #a7cc00 !important;
    stroke: green;
}

/* Responsive */
@media (max-width: 768px) {
    .wp-page-about-area .circle {
        margin-bottom: 10px;
    }

    .wp-page-about-area .card {
        text-align: center;
    }

    .wp-page-about-area .card h3,
    .wp-page-about-area .card p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wp-page-about-area .circle {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wp-page-about-area .circle .icon {
        width: 15px;
        height: 15px;
    }
}

/* ================================================================
   SERVICES PAGE  —  services.php   (classes: srv-*)
   ================================================================ */

.services-page-wrap {
    background: #0a0a0f;
    min-height: 100vh;
    font-family: "Zalando Sans Expanded", sans-serif !important;
}

/* ---- Hero ---- */
.srv-hero {
    position: relative;
    background: #0a0a0f;
    overflow: hidden;
    padding: 100px 0 80px;
    text-align: center;
}

.srv-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 136, 204, .35) 0%, rgba(0, 136, 204, .08) 40%, transparent 70%);
    pointer-events: none;
}

.srv-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, .4), transparent);
}

.srv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .3);
    border-radius: 50px;
    padding: 8px 20px;
    color: #0088cc;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.srv-hero-badge span {
    width: 7px;
    height: 7px;
    background: #0088cc;
    border-radius: 50%;
    display: inline-block;
    animation: srv-blink 1.5s ease-in-out infinite;
}

@keyframes srv-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.srv-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em;
}

.srv-hero h1 .highlight {
    background: linear-gradient(135deg, #0088cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.srv-hero p {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 1.1rem !important;
    max-width: 600px;
    margin: 0 auto 40px !important;
    line-height: 1.7 !important;
}

.srv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #0065a0);
    color: #fff !important;
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all .3s ease;
    box-shadow: 0 0 30px rgba(0, 136, 204, .4);
}

.srv-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 136, 204, .6);
    color: #fff !important;
}

/* ---- Stats ---- */
.srv-stats {
    background: #0d0d14;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 36px 0;
}

.srv-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.srv-stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 20px 30px;
    position: relative;
}

.srv-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
}

.srv-stat-val {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0088cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.srv-stat-label {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    font-weight: 500;
}

/* ---- Section ---- */
.srv-section {
    padding: 90px 0 70px;
}

.srv-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0088cc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.srv-section-label::before,
.srv-section-label::after {
    content: '';
    height: 1px;
    width: 40px;
    background: rgba(0, 136, 204, .5);
}

.srv-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-align: center;
    margin-bottom: 14px !important;
    letter-spacing: -0.02em;
}

.srv-section p.sub {
    color: rgba(255, 255, 255, .55) !important;
    text-align: center;
    font-size: 1rem !important;
    max-width: 560px;
    margin: 0 auto 60px !important;
    line-height: 1.7 !important;
}

/* ---- Tabs ---- */
.srv-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

button.srv-tab-btn {
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    font-family: "Zalando Sans Expanded", sans-serif !important;
}

button.srv-tab-btn:hover,
button.srv-tab-btn.active {
    background: rgba(0, 136, 204, .2);
    border-color: rgba(0, 136, 204, .5);
    color: #fff;
}

.srv-tab-content {
    display: none;
}

.srv-tab-content.active {
    display: block;
    animation: tabFadeIn .3s ease;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Category blocks ---- */
.srv-cat-block {
    margin-bottom: 52px;
}

.srv-cat-block:last-child {
    margin-bottom: 0;
}

.srv-cat-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0088cc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.srv-cat-title::before {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(0, 136, 204, .6);
    display: block;
}

.srv-cat-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent);
    margin: 46px 0;
}

/* ---- Featured grid ---- */
.srv-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 22px;
}

.srv-featured-card {
    background: #111118;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    align-items: flex-start;
    gap: 26px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.srv-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0088cc, transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.srv-featured-card:hover {
    border-color: rgba(0, 136, 204, .3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.srv-featured-card:hover::before {
    opacity: 1;
}

.srv-featured-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: linear-gradient(135deg, rgba(0, 136, 204, .2), rgba(0, 136, 204, .05));
    border: 1px solid rgba(0, 136, 204, .3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-featured-icon img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain;
}

.srv-featured-icon i {
    font-size: 1.8rem !important;
    color: #0088cc;
}

.srv-featured-content h3 {
    color: #fff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.srv-featured-content p {
    color: rgba(255, 255, 255, .5) !important;
    font-size: .88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
}

.srv-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

/* ---- Regular cards ---- */
.srv-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
}

.srv-card {
    background: #111118;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    cursor: pointer;
}

.srv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 136, 204, .07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
    border-radius: 16px;
}

.srv-card:hover {
    border-color: rgba(0, 136, 204, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 0 1px rgba(0, 136, 204, .1);
}

.srv-card:hover::before {
    opacity: 1;
}

.srv-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 136, 204, .2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .35s ease;
}

.srv-card:hover .srv-card-glow {
    opacity: 1;
}

.srv-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .35s ease;
}

.srv-card:hover .srv-card-icon {
    background: rgba(0, 136, 204, .25);
    border-color: rgba(0, 136, 204, .5);
}

.srv-card-icon img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
}

.srv-card h3 {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.srv-card p {
    color: rgba(255, 255, 255, .5) !important;
    font-size: .85rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
}

.srv-card-tag {
    display: inline-block;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .2);
    color: #0088cc;
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.srv-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0088cc !important;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none !important;
    margin-top: 16px;
    transition: gap .2s ease;
}

.srv-card-link:hover {
    gap: 10px;
    color: #00b4ff !important;
}

/* ---- Process ---- */
.srv-process {
    background: #0d0d14;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 90px 0;
}

.srv-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 60px;
    position: relative;
}

.srv-process-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, .4), transparent);
    z-index: 0;
}

.srv-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.srv-step-num {
    width: 56px;
    height: 56px;
    background: #0d0d14;
    border: 2px solid rgba(0, 136, 204, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0088cc;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.srv-step h4 {
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.srv-step p {
    color: rgba(255, 255, 255, .45) !important;
    font-size: .85rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ---- CTA ---- */
.srv-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.srv-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 136, 204, .15) 0%, transparent 65%);
    pointer-events: none;
}

.srv-cta h2 {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em;
}

.srv-cta p {
    color: rgba(255, 255, 255, .55) !important;
    font-size: 1.05rem !important;
    max-width: 520px;
    margin: 0 auto 40px !important;
    line-height: 1.7 !important;
}

.srv-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #0065a0);
    color: #fff !important;
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none !important;
    transition: all .3s ease;
    box-shadow: 0 0 30px rgba(0, 136, 204, .35);
}

.srv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 136, 204, .5);
    color: #fff !important;
}

.srv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, .75) !important;
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: all .3s ease;
}

.srv-btn-secondary:hover {
    border-color: rgba(255, 255, 255, .35);
    color: #fff !important;
    background: rgba(255, 255, 255, .05);
}

/* ---- Services responsive ---- */
@media (max-width: 1100px) {
    .srv-featured-grid {
        grid-template-columns: 1fr;
    }

    .srv-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    .srv-hero {
        padding: 80px 0 60px;
    }

    .srv-section {
        padding: 70px 0 50px;
    }

    .srv-process {
        padding: 70px 0;
    }

    .srv-cta {
        padding: 80px 0;
    }

    .srv-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .srv-process-steps::before {
        display: none;
    }

    .srv-stat-item {
        padding: 16px 20px;
    }

    .srv-stat-val {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .srv-hero {
        padding: 60px 16px 50px;
    }

    .srv-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .srv-hero p {
        font-size: .95rem !important;
        padding: 0 8px;
    }

    .srv-hero-cta {
        padding: 13px 28px;
        font-size: .95rem;
    }

    .srv-stats {
        padding: 24px 0;
    }

    .srv-stat-item {
        flex: 1 1 50%;
        min-width: 50%;
        padding: 18px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .srv-stat-item:not(:last-child)::after {
        display: none;
    }

    .srv-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .06);
    }

    .srv-stat-val {
        font-size: 1.75rem;
    }

    .srv-section {
        padding: 55px 0 40px;
    }

    .srv-section h2 {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    }

    .srv-section p.sub {
        font-size: .9rem !important;
        margin-bottom: 40px !important;
        padding: 0 8px;
    }

    .srv-tabs {
        gap: 7px;
        margin-bottom: 36px;
    }

    button.srv-tab-btn {
        padding: 8px 16px;
        font-size: .8rem;
    }

    .srv-featured-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .srv-featured-card {
        flex-direction: column;
        padding: 26px 20px;
        gap: 18px;
    }

    .srv-featured-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .srv-featured-content h3 {
        font-size: 1.1rem !important;
    }

    .srv-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .srv-card {
        padding: 26px 22px;
    }

    .srv-cat-block {
        margin-bottom: 40px;
    }

    .srv-cat-sep {
        margin: 34px 0;
    }

    .srv-process {
        padding: 55px 0;
    }

    .srv-process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        margin-top: 40px;
    }

    .srv-step {
        padding: 28px 18px;
        border: 1px solid rgba(255, 255, 255, .05);
    }

    .srv-cta {
        padding: 60px 16px;
    }

    .srv-cta h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
    }

    .srv-cta p {
        font-size: .9rem !important;
        padding: 0 8px;
    }

    .srv-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .srv-btn-primary,
    .srv-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 576px) {
    .srv-stat-item {
        flex: 1 1 100%;
        min-width: 100%;
        border-right: none !important;
    }

    .srv-stat-item:nth-child(odd) {
        border-right: none !important;
    }

    .srv-hero-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

    .srv-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .srv-tabs::-webkit-scrollbar {
        display: none;
    }

    button.srv-tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .srv-process-steps {
        grid-template-columns: 1fr;
    }

    .srv-step {
        padding: 22px 14px;
    }

    .srv-featured-card {
        padding: 20px 16px;
    }

    .srv-featured-content h3 {
        font-size: 1rem !important;
    }

    .srv-card {
        padding: 22px 18px;
    }

    .srv-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .srv-card h3 {
        font-size: 1rem !important;
    }
}


/* ================================================================
   EXPERT PAGES  —  wordpress / shopify / social-engine / etc.
   Single shared class set  .exp-*  replaces individual prefixes
   (wpe- / shp- / se-  all renamed to  exp-  in the PHP files)
   ================================================================ */

.exp-page {
    background: #0a0a0f;
    font-family: "Zalando Sans Expanded", sans-serif !important;
    color: #fff;
}

/* ---- Hero ---- */
.exp-hero {
    position: relative;
    background: #0a0a0f;
    overflow: hidden;
    padding: 110px 0 90px;
    text-align: center;
}

.exp-hero::before {
    content: '';
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 560px;
    background: radial-gradient(ellipse at center, rgba(0, 136, 204, .30) 0%, rgba(0, 136, 204, .07) 45%, transparent 70%);
    pointer-events: none;
}

.exp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, .4), transparent);
}

.exp-hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 136, 204, .15);
    animation: exp-float linear infinite;
    pointer-events: none;
}

@keyframes exp-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-300px) rotate(360deg);
        opacity: 0;
    }
}

.exp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .3);
    border-radius: 50px;
    padding: 8px 22px;
    color: #0088cc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.exp-hero-badge span {
    width: 7px;
    height: 7px;
    background: #0088cc;
    border-radius: 50%;
    display: inline-block;
    animation: exp-blink 1.5s ease-in-out infinite;
}

@keyframes exp-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.exp-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin-bottom: 22px !important;
    letter-spacing: -0.02em;
}

.exp-hero h1 .exp-hl {
    background: linear-gradient(135deg, #0088cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-hero .exp-hero-desc {
    color: rgba(255, 255, 255, .58) !important;
    font-size: 1.1rem !important;
    max-width: 620px;
    margin: 0 auto 44px !important;
    line-height: 1.75 !important;
}

.exp-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.exp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #0088cc, #0065a0);
    color: #fff !important;
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none !important;
    transition: all .3s ease;
    box-shadow: 0 0 30px rgba(0, 136, 204, .35);
}

.exp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 55px rgba(0, 136, 204, .6);
    color: #fff !important;
    text-decoration: none !important;
}

.exp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .85) !important;
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none !important;
    transition: all .3s ease;
}

.exp-btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(0, 136, 204, .4);
    color: #fff !important;
    text-decoration: none !important;
}

/* ---- Stats bar ---- */
.exp-stats {
    background: #0d0d14;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 36px 0;
}

.exp-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.exp-stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px 28px;
    position: relative;
}

.exp-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .07);
}

.exp-stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0088cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.exp-stat-lbl {
    color: rgba(255, 255, 255, .48);
    font-size: .82rem;
    font-weight: 500;
}

/* ---- Shared section ---- */
.exp-section {
    padding: 90px 0 70px;
}

.exp-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0088cc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.exp-section-label::before,
.exp-section-label::after {
    content: '';
    height: 1px;
    width: 36px;
    background: rgba(0, 136, 204, .5);
}

.exp-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.7rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-align: center;
    margin-bottom: 14px !important;
    letter-spacing: -0.02em;
}

.exp-section .exp-sub {
    color: rgba(255, 255, 255, .52) !important;
    text-align: center;
    font-size: 1rem !important;
    max-width: 560px;
    margin: 0 auto 60px !important;
    line-height: 1.7 !important;
}

.exp-bg-alt {
    background: #0d0d14;
}

/* ---- Why / split layout ---- */
.exp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exp-why-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.exp-why-img img {
    width: 100% !important;
    height: auto;
    display: block;
    border-radius: 20px;
}

.exp-why-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 10, 15, .9);
    border: 1px solid rgba(0, 136, 204, .3);
    border-radius: 12px;
    padding: 14px 18px;
    backdrop-filter: blur(12px);
}

.exp-why-img-badge .exp-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0088cc;
    line-height: 1;
}

.exp-why-img-badge .exp-badge-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.exp-why-content .exp-section-label {
    justify-content: flex-start;
}

.exp-why-content h2 {
    text-align: left !important;
}

.exp-why-content p {
    color: rgba(255, 255, 255, .52) !important;
    font-size: .95rem !important;
    line-height: 1.8 !important;
    margin-bottom: 28px !important;
}

.exp-why-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

.exp-why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    transition: all .25s ease;
}

.exp-why-item:hover {
    border-color: rgba(0, 136, 204, .3);
    background: rgba(0, 136, 204, .06);
}

.exp-why-item i {
    color: #0088cc;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Featured grid ---- */
.exp-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.exp-featured-card {
    background: #111118;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 38px 34px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.exp-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0088cc, transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.exp-featured-card:hover {
    border-color: rgba(0, 136, 204, .3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.exp-featured-card:hover::before {
    opacity: 1;
}

.exp-featured-icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
    background: linear-gradient(135deg, rgba(0, 136, 204, .2), rgba(0, 136, 204, .04));
    border: 1px solid rgba(0, 136, 204, .28);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-featured-icon img {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(180deg);
}

.exp-featured-icon i {
    font-size: 1.8rem !important;
    color: #0088cc;
}

.exp-featured-content h3 {
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 9px !important;
}

.exp-featured-content p {
    color: rgba(255, 255, 255, .5) !important;
    font-size: .87rem !important;
    line-height: 1.65 !important;
    margin-bottom: 0 !important;
}

/* ---- Regular cards ---- */
.exp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.exp-card {
    background: #111118;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    cursor: pointer;
}

.exp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 136, 204, .07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
    border-radius: 16px;
}

.exp-card:hover {
    border-color: rgba(0, 136, 204, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 0 1px rgba(0, 136, 204, .1);
}

.exp-card:hover::before {
    opacity: 1;
}

.exp-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 136, 204, .2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .35s ease;
}

.exp-card:hover .exp-card-glow {
    opacity: 1;
}

.exp-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .35s ease;
}

.exp-card:hover .exp-card-icon {
    background: rgba(0, 136, 204, .25);
    border-color: rgba(0, 136, 204, .5);
}

.exp-card-icon img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
}

.exp-card-icon i {
    font-size: 1.4rem;
    color: #0088cc;
}

.exp-card h3 {
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.exp-card p {
    color: rgba(255, 255, 255, .5) !important;
    font-size: .84rem !important;
    line-height: 1.65 !important;
    margin-bottom: 18px !important;
}

.exp-card-tag {
    display: inline-block;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .2);
    color: #0088cc;
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.exp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0088cc !important;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none !important;
    margin-top: 14px;
    transition: gap .2s ease;
}

.exp-card-link:hover {
    gap: 10px;
    color: #00b4ff !important;
}

/* ---- Features grid ---- */
.exp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.exp-feature-card {
    background: #111118;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 34px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.exp-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0088cc, transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.exp-feature-card:hover {
    border-color: rgba(0, 136, 204, .3);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
}

.exp-feature-card:hover::after {
    opacity: 1;
}

.exp-feature-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 136, 204, .2), rgba(0, 136, 204, .05));
    border: 1px solid rgba(0, 136, 204, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all .35s ease;
}

.exp-feature-card:hover .exp-feature-icon-wrap {
    background: linear-gradient(135deg, rgba(0, 136, 204, .35), rgba(0, 136, 204, .1));
    box-shadow: 0 0 30px rgba(0, 136, 204, .3);
}

.exp-feature-icon-wrap img {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(180deg);
}

.exp-feature-icon-wrap i {
    font-size: 1.6rem;
    color: #0088cc;
}

.exp-feature-card h3 {
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.exp-feature-card p {
    color: rgba(255, 255, 255, .48) !important;
    font-size: .86rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ---- Process ---- */
.exp-process {
    background: #0d0d14;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.exp-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    position: relative;
}

.exp-process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, .3), transparent);
    pointer-events: none;
}

.exp-process-card {
    background: #111118;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 36px 24px 30px;
    text-align: center;
    position: relative;
    transition: all .35s ease;
}

.exp-process-card:hover {
    border-color: rgba(0, 136, 204, .3);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .3);
}

.exp-process-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0088cc, #0065a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(0, 136, 204, .4);
    position: relative;
    z-index: 1;
}

.exp-process-card h3 {
    color: #0088cc !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.exp-process-card p {
    color: rgba(255, 255, 255, .48) !important;
    font-size: .86rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ---- CTA ---- */
.exp-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 0;
    background: #0a0a0f;
}

.exp-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 136, 204, .22) 0%, rgba(0, 136, 204, .05) 45%, transparent 70%);
    pointer-events: none;
}

.exp-cta h2 {
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.exp-cta p {
    color: rgba(255, 255, 255, .55) !important;
    font-size: 1rem !important;
    max-width: 520px;
    margin: 0 auto 38px !important;
    line-height: 1.7 !important;
    position: relative;
    z-index: 1;
}

.exp-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ---- Expert pages responsive ---- */
@media (max-width: 1100px) {
    .exp-why-grid {
        gap: 44px;
    }
}

@media (max-width: 992px) {
    .exp-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exp-why-img {
        max-width: 480px;
        margin: 0 auto;
    }

    .exp-why-content h2 {
        text-align: center !important;
    }

    .exp-why-content .exp-section-label {
        justify-content: center;
    }

    .exp-featured-grid {
        grid-template-columns: 1fr;
    }

    .exp-process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .exp-hero {
        padding: 80px 0 70px;
    }

    .exp-section {
        padding: 60px 0 50px;
    }

    .exp-why-checklist {
        grid-template-columns: 1fr;
    }

    .exp-stat-item {
        min-width: 120px;
        padding: 16px 18px;
    }

    .exp-stat-val {
        font-size: 1.8rem;
    }

    .exp-featured-card {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .exp-hero h1 {
        font-size: 2rem !important;
    }

    .exp-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .exp-btn-primary,
    .exp-btn-ghost {
        justify-content: center;
    }

    .exp-cards-grid {
        grid-template-columns: 1fr;
    }

    .exp-features-grid {
        grid-template-columns: 1fr;
    }

    .exp-process-grid {
        grid-template-columns: 1fr;
    }

    .exp-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ================================================================
   EXP-* ADDITIONS — missing classes used in expert page pattern
   ================================================================ */

/* Checklist <li> items inside exp-why-checklist (wordpress-experts pattern) */
.exp-why-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    transition: all .25s ease;
    list-style: none;
}

.exp-why-checklist li::before {
    content: '\f00c';
    font-family: 'FontAwesome', sans-serif;
    color: #0088cc;
    font-size: .85rem;
    flex-shrink: 0;
}

.exp-why-checklist li:hover {
    border-color: rgba(0, 136, 204, .3);
    background: rgba(0, 136, 204, .06);
}

/* Tag pills used inside featured cards */
.exp-tag {
    display: inline-block;
    background: rgba(0, 136, 204, .12);
    border: 1px solid rgba(0, 136, 204, .2);
    color: #0088cc;
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
}