.color-strip-section {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.color-strip-section-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 2rem 4rem;
    box-sizing: border-box;
}

.color-strip-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-600, #ff0000), var(--primary-700, #d70000));
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.18);
}

.color-strip-copy {
    color: #fff;
}

.color-strip-title {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.color-strip-description {
    margin: 0.55rem 0 0 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
}

.color-strip-swatches {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.color-swatch {
    width: 180px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.color-swatch-visual {
    width: 100%;
    height: 68px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(90deg, var(--swatch-primary, rgba(255, 255, 255, 0.5)), var(--swatch-accent, #fff));
}

.color-swatch-copy {
    padding: 0.8rem 0.85rem 0.9rem;
    color: #fff;
}

.color-swatch-title {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 700;
}

.color-swatch-text {
    margin: 0.35rem 0 0 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 1200px) {
    .color-strip-section-inner {
        padding: 3rem 4rem;
    }

    .color-strip-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 1199px) {
    .color-strip-section-inner {
        padding: 2rem 2rem;
    }

    .color-strip-shell {
        grid-template-columns: 1fr;
    }

    .color-strip-swatches {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .color-strip-section-inner {
        padding: 1.5rem 1rem;
    }

    .color-strip-title {
        font-size: 1.45rem;
    }

    .color-strip-description {
        font-size: 0.9rem;
    }

    .color-swatch {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .color-strip-shell {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .color-swatch-copy {
        padding: 0.75rem;
    }

    .color-swatch-title {
        font-size: 0.94rem;
    }

    .color-swatch-text {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .color-swatch {
        transition: none !important;
    }
}