/* Softify — subtle modern polish overlay (purely additive, non-destructive)
   Layered on top of the existing theme. Remove the <link> tag in header.twig
   to revert at any time.
*/

/* ---------- 1. Typography rendering ---------- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ---------- 2. Smooth global transitions ---------- */
a,
button,
.short-item,
.short-item__image,
.heart-button,
.header-nav__link,
.footer-nav__link,
.user-nav__link,
.mob-button,
.short-item__link {
    transition:
        color .22s ease,
        background-color .22s ease,
        transform .25s ease,
        box-shadow .25s ease,
        border-color .22s ease,
        opacity .22s ease;
}

/* ---------- 3. Product card subtle lift + image zoom ---------- */
.short-item {
    border-radius: 10px;
}
.short-item:hover {
    transform: translateY(-3px);
}
.short-item__all {
    position: relative;
}
.short-item__image-bg {
    overflow: hidden;
    border-radius: 8px;
    display: block;
}
.short-item__image {
    transition: transform .55s ease;
    will-change: transform;
}
.short-item:hover .short-item__image {
    transform: scale(1.05);
}
.short-item__title {
    transition: color .22s ease;
}
.short-item:hover .short-item__title,
.short-item__link:hover {
    color: #000;
}

/* ---------- 4. Heart / favorite micro-interaction ---------- */
.heart-button {
    transform-origin: center;
}
.heart-button:hover {
    transform: scale(1.18);
}
.heart-button:active {
    transform: scale(0.95);
}

/* ---------- 5. Header nav underline reveal on hover ---------- */
.header-nav__link {
    position: relative;
    padding-bottom: 4px;
}
.header-nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: currentColor;
    transition: left .25s ease, right .25s ease, opacity .25s ease;
    opacity: 0;
}
.header-nav__link:hover::after {
    left: 15%;
    right: 15%;
    opacity: 0.7;
}

/* ---------- 6. Modern focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #b8895c;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- 7. Section spacing on mobile ---------- */
@media (max-width: 767px) {
    .main-block.wrapper { padding-top: 36px; padding-bottom: 36px; }
    .collection-block.wrapper { padding-top: 36px; padding-bottom: 36px; }
    .main-block__top { margin-bottom: 22px; }
    .main-block__title { font-size: 26px; }
}

/* ---------- 8. Soft scroll & selection ---------- */
html { scroll-behavior: smooth; }
::selection { background: rgba(184,137,92,.22); color: inherit; }
::-moz-selection { background: rgba(184,137,92,.22); color: inherit; }

/* ---------- 9. Loader fade ---------- */
.load-icon { transition: opacity .35s ease; }

/* ---------- 10. Item tag (New/Sale) modern softness ---------- */
.item-tag {
    border-radius: 999px;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px rgba(20,25,40,.08);
}

/* ---------- 11. Buttons – soft pressed feedback ---------- */
button:active,
.button:active,
.main-slider__button:active {
    transform: translateY(1px);
}

/* ---------- 12. Image lazy fade-in (when main.js applies data-lazy) ---------- */
img[data-lazy] { opacity: 0; }
img[src]:not([data-lazy]),
img.lazy-loaded { opacity: 1; transition: opacity .35s ease; }

/* ---------- 13. Card surface lift for category blocks ---------- */
.collection-block .short-item:hover,
.main-block .short-item:hover {
    box-shadow: 0 14px 30px rgba(28,35,55,.07);
}

/* ---------- 14. Footer link hover ---------- */
.footer-nav__link:hover,
.footer-description a:hover { opacity: .8; }

/* ---------- 15. Subtle scroll-fade for newsletter button etc. ---------- */
.subscription__button { transition: transform .25s ease, background .22s ease; }
.subscription__button:hover { transform: translateY(-1px); }

/* ---------- 16. Category description block (softify-cat-desc) ---------- */
.softify-cat-desc {
    padding: 28px 0 18px;
    color: #4a4f5c;
}
.softify-cat-desc__inner {
    max-width: 880px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}
.softify-cat-desc__inner p {
    margin: 0 0 12px;
}
.softify-cat-desc__inner p:last-child { margin-bottom: 0; }
.softify-cat-desc__inner strong { color: #1d2330; }
@media (max-width: 767px) {
    .softify-cat-desc { padding: 18px 16px 8px; }
    .softify-cat-desc__inner { font-size: 14.5px; }
}

/* ---------- 17. Top announcement bar (kayan yazı) ---------- */
.softify-topbar {
    background: linear-gradient(90deg, #2c2620 0%, #3a3027 50%, #2c2620 100%);
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.softify-topbar.is-closed { display: none; }
.softify-topbar__inner {
    display: flex;
    overflow: hidden;
    padding: 9px 40px 9px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.softify-topbar__track {
    display: inline-flex;
    gap: 28px;
    white-space: nowrap;
    padding-left: 28px;
    animation: softify-marquee 36s linear infinite;
    will-change: transform;
}
.softify-topbar:hover .softify-topbar__track { animation-play-state: paused; }
.softify-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .01em;
}
.softify-topbar__sep {
    color: rgba(255,255,255,.32);
    font-size: 8px;
    display: inline-flex;
    align-items: center;
}
.softify-topbar__close {
    position: absolute;
    top: 0; bottom: 0; right: 10px;
    width: 28px;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,.7);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.softify-topbar__close:hover { color: #fff; }
@keyframes softify-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
    .softify-topbar { font-size: 12px; }
    .softify-topbar__track { animation-duration: 28s; gap: 22px; padding-left: 22px; }
    .softify-topbar__inner { padding-right: 36px; }
}

/* ---------- 18. Bestsellers carousel (softify-bestsellers) ---------- */
.softify-bestsellers-placeholder { min-height: 1px; }
.softify-bestsellers {
    padding: 32px 0 8px;
}
.softify-bestsellers__inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}
.softify-bestsellers__head {
    margin-bottom: 18px;
}
.softify-bestsellers__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b8895c;
    margin-bottom: 4px;
}
.softify-bestsellers__title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #1d2330;
    font-family: inherit;
    letter-spacing: -.01em;
}
.softify-bestsellers__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 700px) {
    .softify-bestsellers__list { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}
.softify-bestseller {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease;
}
.softify-bestseller:hover { transform: translateY(-3px); }
.softify-bestseller__image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f3efe7;
}
.softify-bestseller__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s ease;
}
.softify-bestseller:hover .softify-bestseller__image img { transform: scale(1.06); }
.softify-bestseller__rank {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(20,25,40,.88);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: .04em;
    z-index: 2;
}
.softify-bestseller__name {
    font-size: 14px;
    color: #1d2330;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.softify-bestseller__price {
    font-weight: 600;
    color: #9a6c41;
    font-size: 15px;
}
.softify-bestsellers__loading {
    text-align: center;
    color: #8a8e98;
    padding: 30px 0;
    font-size: 13px;
}

/* ---------- 19. Advantages strip (Neden Softify) ---------- */
.softify-advantages {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, #faf8f4 0%, #f3efe7 100%);
    margin-top: 20px;
}
.softify-advantages__inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}
.softify-advantages__head {
    text-align: center;
    margin-bottom: 30px;
}
.softify-advantages__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b8895c;
    margin-bottom: 6px;
}
.softify-advantages__title {
    margin: 0;
    font-size: 26px;
    font-weight: 500;
    color: #1d2330;
    letter-spacing: -.01em;
    font-family: inherit;
}
.softify-advantages__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 760px) {
    .softify-advantages__grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}
.softify-advantage {
    background: #fff;
    border: 1px solid #e8e3d8;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.softify-advantage:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(28,35,55,.06);
}
.softify-advantage__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: #f3efe7;
    color: #9a6c41;
    display: grid;
    place-items: center;
}
.softify-advantage__title {
    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 600;
    color: #1d2330;
    font-family: inherit;
    letter-spacing: -.005em;
}
.softify-advantage__text {
    margin: 0;
    font-size: 13.5px;
    color: #6b6b76;
    line-height: 1.55;
}
@media (max-width: 600px) {
    .softify-advantages { padding: 36px 0 20px; }
    .softify-advantage { padding: 18px 14px; }
    .softify-advantage__text { font-size: 12.5px; }
}

/* ---------- 20. Header CTA buttons (Toptan / Numune Talep) ---------- */
.softify-cta-buttons {
    display: none;
    gap: 8px;
    align-items: center;
    margin-right: 14px;
}
@media (min-width: 1024px) {
    .softify-cta-buttons { display: inline-flex; }
}
.softify-cta-btn {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border: 1px solid #d8d2c3;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #1d2330;
    text-decoration: none;
    transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .2s ease;
    white-space: nowrap;
}
.softify-cta-btn:hover {
    background: #1d2330;
    color: #fff;
    border-color: #1d2330;
    transform: translateY(-1px);
}
.softify-cta-btn--accent {
    background: #b8895c;
    color: #fff;
    border-color: #b8895c;
}
.softify-cta-btn--accent:hover {
    background: #9a6c41;
    border-color: #9a6c41;
    color: #fff;
}

/* ---------- 21. Mobile menu extra items ---------- */
.softify-mob-extra .mob-nav__link {
    color: #6b6b76;
    font-size: 14px;
}
.softify-mob-extra:first-of-type {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
}

/* ---------- 22. Testimonials ---------- */
.softify-testimonials {
    padding: 50px 0 36px;
}
.softify-testimonials__inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}
.softify-testimonials__head {
    text-align: center;
    margin-bottom: 30px;
}
.softify-testimonials__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b8895c;
    margin-bottom: 6px;
}
.softify-testimonials__title {
    margin: 0;
    font-size: 26px;
    font-weight: 500;
    color: #1d2330;
    letter-spacing: -.01em;
    font-family: inherit;
}
.softify-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 760px) {
    .softify-testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.softify-testimonial {
    background: #fff;
    border: 1px solid #e8e3d8;
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: box-shadow .25s ease, transform .25s ease;
}
.softify-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(28,35,55,.06);
}
.softify-testimonial::before {
    content: '“';
    position: absolute;
    top: -8px;
    right: 18px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 70px;
    color: rgba(184,137,92,.18);
    line-height: 1;
    pointer-events: none;
}
.softify-testimonial__stars {
    color: #d4a861;
    letter-spacing: 4px;
    font-size: 15px;
}
.softify-testimonial__quote {
    margin: 0;
    font-size: 14.5px;
    color: #4a4f5c;
    line-height: 1.6;
    font-style: italic;
}
.softify-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.05);
    font-style: normal;
}
.softify-testimonial__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a861, #b8895c);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
}
.softify-testimonial__author strong {
    display: block;
    font-size: 14px;
    color: #1d2330;
    font-weight: 600;
}
.softify-testimonial__product {
    font-size: 12px;
    color: #8a8e98;
}
.softify-testimonials__note {
    text-align: center;
    margin: 22px 0 0;
    font-size: 12.5px;
    color: #8a8e98;
    font-style: italic;
}


/* ---------- Wrapper-matched mobile padding ---------- */
@media (max-width: 767px) {
    .softify-bestsellers__inner,
    .softify-advantages__inner,
    .softify-testimonials__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------- 23. Nav "Yakında" badge + Otel Tekstili highlight ---------- */
.softify-nav-soon .header-nav__link,
.softify-nav-soon .mob-nav__link {
    color: #8a8e98 !important;
    cursor: not-allowed;
    opacity: .85;
}
.softify-nav-soon .header-nav__link:hover,
.softify-nav-soon .mob-nav__link:hover {
    color: #8a8e98 !important;
}
.softify-nav-soon .header-nav__link::after { display: none !important; }

.softify-soon-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: #f1ede4;
    color: #b8895c;
    border-radius: 999px;
    vertical-align: middle;
    line-height: 1.4;
}

.softify-nav-otel .header-nav__link {
    color: #9a6c41;
    font-weight: 600;
}
.softify-nav-otel .header-nav__link:hover {
    color: #1d2330;
}

/* Single Toptan Satış button position adjustment */
.softify-cta-buttons {
    display: none;
    gap: 8px;
    align-items: center;
    margin-right: 12px;
}
@media (min-width: 900px) { .softify-cta-buttons { display: inline-flex; } }

/* ---------- 24. Otel Tekstili page styles ---------- */
.softify-otel {
    max-width: 1100px;
    margin: 0 auto;
    color: #1d2330;
    font-size: 15px;
    line-height: 1.65;
}
.softify-otel * { box-sizing: border-box; }

.softify-otel-hero {
    text-align: center;
    padding: 30px 20px 40px;
    background: linear-gradient(180deg, #faf8f4 0%, #f3efe7 100%);
    border-radius: 18px;
    margin-bottom: 32px;
}
.softify-otel-hero__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 500;
    color: #1d2330;
    letter-spacing: -.01em;
    margin: 0 0 12px;
    line-height: 1.18;
}
.softify-otel-hero__lede {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: #4a4f5c;
    line-height: 1.6;
}

.softify-otel-langs {
    margin-bottom: 40px;
}
.softify-otel-lang {
    border: 1px solid #e8e3d8;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.softify-otel-lang summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #1d2330;
    background: #fafaf7;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color .2s ease;
}
.softify-otel-lang summary::-webkit-details-marker { display: none; }
.softify-otel-lang summary::before {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1d2330;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background-color .2s ease;
}
.softify-otel-lang[open] summary::before {
    content: '−';
    background: #9a6c41;
}
.softify-otel-lang summary:hover { background: #f3efe7; }
.softify-otel-lang__body {
    padding: 18px 22px 22px;
    border-top: 1px solid #f1ede4;
}
.softify-otel-lang__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.softify-otel-lang__body ul li {
    position: relative;
    padding: 8px 0 8px 26px;
    border-bottom: 1px solid #f3efe7;
    color: #4a4f5c;
}
.softify-otel-lang__body ul li:last-child { border-bottom: 0; }
.softify-otel-lang__body ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #b8895c;
    border-radius: 50%;
}

.softify-otel-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.softify-otel-actions--large { justify-content: center; margin-top: 24px; }

.softify-otel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    transition: transform .2s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
    border: 1px solid transparent;
}
.softify-otel-btn:hover { transform: translateY(-1px); }
.softify-otel-btn--primary {
    background: #1d2330;
    color: #fff;
}
.softify-otel-btn--primary:hover {
    background: #9a6c41;
    color: #fff;
    box-shadow: 0 12px 24px rgba(154,108,65,.18);
}
.softify-otel-btn--secondary {
    background: transparent;
    color: #1d2330;
    border-color: #d8d2c3;
}
.softify-otel-btn--secondary:hover {
    background: #f3efe7;
    border-color: #b8895c;
    color: #9a6c41;
}

.softify-otel-gallery {
    margin-bottom: 40px;
}
.softify-otel-gallery__head {
    text-align: center;
    margin-bottom: 24px;
}
.softify-otel-gallery__head h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    margin: 0 0 6px;
    color: #1d2330;
    letter-spacing: -.01em;
}
.softify-otel-gallery__head p {
    margin: 0;
    color: #8a8e98;
    font-size: 14px;
}
.softify-otel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 700px)  { .softify-otel-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .softify-otel-grid { grid-template-columns: repeat(4, 1fr); } }

.softify-otel-card {
    margin: 0;
    background: #fff;
    border: 1px solid #f1ede4;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.softify-otel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(28,35,55,.07);
}
.softify-otel-card__media {
    aspect-ratio: 4/5;
    background: #f3efe7;
    overflow: hidden;
}
.softify-otel-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    display: block;
}
.softify-otel-card:hover .softify-otel-card__media img { transform: scale(1.05); }
.softify-otel-card__label {
    padding: 12px 14px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #1d2330;
    letter-spacing: .02em;
}

.softify-otel-bottom-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2c2620 0%, #3a3027 100%);
    color: #fff;
    border-radius: 18px;
    margin-bottom: 30px;
}
.softify-otel-bottom-cta h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px;
}
.softify-otel-bottom-cta p {
    color: rgba(255,255,255,.75);
    max-width: 540px;
    margin: 0 auto;
    font-size: 15px;
}
.softify-otel-bottom-cta .softify-otel-btn--primary {
    background: #fff;
    color: #1d2330;
}
.softify-otel-bottom-cta .softify-otel-btn--primary:hover {
    background: #b8895c;
    color: #fff;
}
.softify-otel-bottom-cta .softify-otel-btn--secondary {
    color: #fff;
    border-color: rgba(255,255,255,.35);
}
.softify-otel-bottom-cta .softify-otel-btn--secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 600px) {
    .softify-otel-hero { padding: 24px 16px 28px; border-radius: 14px; }
    .softify-otel-lang summary { padding: 12px 16px; font-size: 14px; }
    .softify-otel-lang__body { padding: 14px 16px 18px; }
    .softify-otel-bottom-cta { padding: 30px 18px; }
    .softify-otel-btn { width: 100%; }
}

/* ---------- 25. Desktop navbar compaction (Mac laptop 1280–1440px) ---------- */
@media (min-width: 1024px) and (max-width: 1500px) {
    .header-nav__list { gap: 2px !important; }
    .header-nav__link {
        font-size: 13px !important;
        padding: 6px 10px !important;
        letter-spacing: 0 !important;
        white-space: nowrap;
    }
    .softify-soon-badge {
        font-size: 8px;
        padding: 2px 5px;
        margin-left: 4px;
    }
    .softify-cta-btn {
        height: 30px;
        padding: 0 11px;
        font-size: 11.5px;
    }
    .softify-cta-buttons { margin-right: 8px; }
    .user-nav { gap: 0 !important; }
    .user-nav__item { margin-left: 0 !important; }
    .user-nav__link { padding: 6px !important; }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .header-nav__link { font-size: 12px !important; padding: 6px 8px !important; }
    .softify-soon-badge { display: none; } /* hide badges on tight laptops */
    .softify-cta-btn { font-size: 11px; padding: 0 9px; }
}

/* Better wrap-prevention: nav list never wraps */
.header-nav__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.header-nav__item { flex: 0 0 auto; }

/* End of overlay */
