/**
 * Devstarter - Main Stylesheet
 *
 * Table of Contents:
 *
 * 1.0  - CSS Reset & Base
 * 2.0  - CSS Custom Properties
 * 3.0  - Typography
 * 4.0  - Layout & Grid
 * 5.0  - Header & Navigation
 * 6.0  - Content & Posts
 * 7.0  - Sidebar & Widgets
 * 8.0  - Footer
 * 9.0  - Forms & Buttons
 * 10.0 - Page Builder Compatibility (Elementor / Divi)
 * 11.0 - WooCommerce Overrides
 * 12.0 - WordPress Core Alignments
 * 13.0 - Utility Classes
 * 14.0 - Responsive Breakpoints
 * 15.0 - WordPress Required Classes
 *
 * @package devstarter
 * @version 1.0.0
 * @author  Muhammad Abid
 */


/* ==========================================================================
   1.0 - CSS Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--starter-font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--starter-color-text);
    background-color: var(--starter-color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

ul,
ol {
    list-style-position: inside;
}


/* ==========================================================================
   2.0 - CSS Custom Properties
   ========================================================================== */

:root {
    --dsc-admin-offset: 0px;
    /* Colors */
    --starter-color-primary: #2563eb;
    --starter-color-primary-rgb: 37, 99, 235;
    --starter-color-secondary: #1e40af;
    --starter-color-accent: #3b82f6;
    --starter-color-dark: #0f172a;
    --starter-color-text: #334155;
    --starter-color-text-light: #64748b;
    --starter-color-bg: #ffffff;
    --starter-color-bg-alt: #f8fafc;
    --starter-color-border: #e2e8f0;
    --starter-color-success: #22c55e;
    --starter-color-warning: #f59e0b;
    --starter-color-danger: #ef4444;

    /* Typography */
    --starter-font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --starter-font-heading: var(--starter-font-primary);
    --starter-font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;

    /* Spacing */
    --starter-spacing-xs: 0.25rem;
    --starter-spacing-sm: 0.5rem;
    --starter-spacing-md: 1rem;
    --starter-spacing-lg: 1.5rem;
    --starter-spacing-xl: 2rem;
    --starter-spacing-2xl: 3rem;
    --starter-spacing-3xl: 4rem;

    /* Layout */
    --starter-container-width: 1200px;
    --starter-sidebar-width: 320px;
    --starter-header-height: 80px;

    /* Borders & Shadows */
    --starter-radius-sm: 4px;
    --starter-radius-md: 8px;
    --starter-radius-lg: 12px;
    --starter-radius-full: 9999px;
    --starter-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --starter-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --starter-shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --starter-shadow-xl: 0 20px 50px -5px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --starter-transition-fast: 150ms ease;
    --starter-transition: 300ms ease;
    --starter-transition-slow: 500ms ease;

    /* Z-index scale */
    --starter-z-dropdown: 100;
    --starter-z-sticky: 200;
    --starter-z-overlay: 300;
    --starter-z-modal: 400;
}

body.admin-bar {
    --dsc-admin-offset: 32px;
}


/* ==========================================================================
   3.0 - Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--starter-font-heading);
    color: var(--starter-color-dark);
    line-height: 1.3;
    margin-bottom: var(--starter-spacing-md);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--starter-spacing-md);
}

a {
    color: var(--starter-color-primary);
    text-decoration: none;
    transition: color var(--starter-transition-fast), text-decoration-color var(--starter-transition-fast), box-shadow var(--starter-transition-fast);
}

a:hover,
a:focus {
    color: var(--starter-color-secondary);
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
.menu-toggle:focus,
.menu-toggle:focus-visible,
input[type="submit"]:focus,
input[type="submit"]:focus-visible,
input[type="button"]:focus,
input[type="button"]:focus-visible {
    outline: 3px solid var(--starter-color-primary);
    outline-offset: 2px;
}

blockquote {
    border-left: 4px solid var(--starter-color-primary);
    padding: var(--starter-spacing-md) var(--starter-spacing-lg);
    margin: var(--starter-spacing-xl) 0;
    background: var(--starter-color-bg-alt);
    font-style: italic;
    border-radius: 0 var(--starter-radius-sm) var(--starter-radius-sm) 0;
}

pre,
code {
    font-family: var(--starter-font-mono);
    font-size: 0.875rem;
}

pre {
    background: var(--starter-color-dark);
    color: #e2e8f0;
    padding: var(--starter-spacing-lg);
    border-radius: var(--starter-radius-md);
    overflow-x: auto;
    margin-bottom: var(--starter-spacing-lg);
}

code {
    background: var(--starter-color-bg-alt);
    padding: 2px 6px;
    border-radius: var(--starter-radius-sm);
}

pre code {
    background: transparent;
    padding: 0;
}

hr {
    border: 0;
    height: 1px;
    background: var(--starter-color-border);
    margin: var(--starter-spacing-2xl) 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--starter-spacing-lg);
}

th,
td {
    text-align: left;
    padding: var(--starter-spacing-sm) var(--starter-spacing-md);
    border-bottom: 1px solid var(--starter-color-border);
}

th {
    font-weight: 600;
    color: var(--starter-color-dark);
}


/* ==========================================================================
   4.0 - Layout & Grid
   ========================================================================== */

.starter-container {
    width: 100%;
    max-width: var(--starter-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--starter-spacing-lg);
    padding-right: var(--starter-spacing-lg);
}

.starter-container--narrow {
    max-width: 800px;
}

.starter-container--wide {
    max-width: 1400px;
}

.starter-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--starter-spacing-lg) * -0.5);
    margin-right: calc(var(--starter-spacing-lg) * -0.5);
}

.starter-col {
    flex: 1;
    padding-left: calc(var(--starter-spacing-lg) * 0.5);
    padding-right: calc(var(--starter-spacing-lg) * 0.5);
}

.starter-grid {
    display: grid;
    gap: var(--starter-spacing-lg);
}

.starter-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.starter-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.starter-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Content + Sidebar layout */
.starter-layout {
    display: grid;
    grid-template-columns: 1fr var(--starter-sidebar-width);
    gap: var(--starter-spacing-2xl);
}

.starter-layout--left-sidebar {
    grid-template-columns: var(--starter-sidebar-width) 1fr;
}

.starter-layout--full-width {
    grid-template-columns: 1fr;
}


/* ==========================================================================
   5.0 - Header & Navigation
   ========================================================================== */

.dsc-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--starter-z-sticky, 1000);
    transition: background 0.4s ease;
}

.dsc-header.is-menu-open {
    z-index: 10020 !important;
}

body.admin-bar .dsc-header {
    top: var(--dsc-admin-offset, 32px);
}

.dsc-header__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dsc-header__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dsc-header__top .dsc-header__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.dsc-header__top-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.dsc-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dsc-header__contact:hover {
    color: #ffffff;
}

.dsc-header__contact svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.dsc-header__logo {
    text-align: center;
}

.dsc-header__logo-link {
    display: inline-flex;
    align-items: center;
}

.dsc-header__logo-img {
    max-height: var(--starter-header-logo-height, 60px);
    width: auto;
    display: block;
}

.dsc-header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}

.dsc-header__brand-name {
    color: #ffffff;
    font-family: var(--starter-font-heading, sans-serif);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}

.dsc-header__tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.dsc-header__top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dsc-header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dsc-header__search-btn:hover {
    background: var(--dsc-primary, #fc191d);
    border-color: var(--dsc-primary, #fc191d);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(252, 25, 29, 0.3);
}

.dsc-header__search-btn svg {
    width: 18px;
    height: 18px;
}

.dsc-header__nav-row {
    transition: background 0.4s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.dsc-header__nav-row .dsc-header__container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dsc-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsc-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.dsc-header__menu>li {
    position: relative;
}

.dsc-submenu-toggle {
    display: none;
}

.dsc-header__menu>li>a {
    display: block;
    padding: 1rem 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.dsc-header__menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.15rem;
    right: 1.15rem;
    height: 3px;
    background: var(--dsc-primary, #fc191d);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.dsc-header__menu>li>a:hover,
.dsc-header__menu>li>a:focus-visible,
.dsc-header__menu>li.current-menu-item>a,
.dsc-header__menu>li.current-menu-ancestor>a,
.dsc-header__menu>li.current_page_item>a {
    color: #ffffff;
}

.dsc-header__menu>li>a:hover::after,
.dsc-header__menu>li.current-menu-item>a::after,
.dsc-header__menu>li.current-menu-ancestor>a::after,
.dsc-header__menu>li.current_page_item>a::after {
    transform: scaleX(1);
}

.dsc-header__menu .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    background: rgba(15, 15, 20, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dsc-header__menu li:hover>.sub-menu,
.dsc-header__menu li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dsc-header__menu .sub-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.dsc-header__menu .sub-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    padding-left: 1.5rem;
}

.dsc-header__menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.dsc-header--transparent {
    background: transparent;
}

.dsc-header--transparent .dsc-header__top {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.dsc-header__nav-row.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 0.15rem 0;
    animation: dscNavSlideDown 0.35s ease forwards;
}

body.admin-bar .dsc-header__nav-row.is-stuck {
    top: var(--dsc-admin-offset, 0px);
}

@keyframes dscNavSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dsc-header a:focus,
.dsc-header a:focus-visible,
.dsc-header button:focus,
.dsc-header button:focus-visible,
.dsc-header__menu>li>a:focus,
.dsc-header__menu>li>a:focus-visible,
.dsc-header__search-btn:focus,
.dsc-header__search-btn:focus-visible,
.dsc-mobile-toggle:focus,
.dsc-mobile-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.dsc-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.dsc-mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.dsc-mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.dsc-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.dsc-mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dsc-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 5, 10, 0.74);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.dsc-mobile-overlay.is-visible {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .dsc-header__top .dsc-header__container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .dsc-header__top-left {
        display: none;
    }

    .dsc-header__logo {
        grid-column: 1;
        text-align: left;
    }

    .dsc-header__top-right {
        grid-column: 2;
    }

    .dsc-mobile-toggle {
        display: flex;
    }

    .dsc-header__nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 12, 18, 0.98);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        padding: 5rem 0 2rem;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    }

    .dsc-header__nav.is-open {
        right: 0;
    }

    .dsc-header__menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .dsc-header__menu>li>a {
        padding: 1rem 2rem;
        text-align: left;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .dsc-header__menu>li>a:hover {
        background: rgba(255, 255, 255, 0.04);
        padding-left: 2.3rem;
    }

    .dsc-header__menu>li>a::after {
        display: none;
    }

    .dsc-header__menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-radius: 0;
        padding: 0.25rem 0 0.5rem 1.5rem;
        min-width: 0;
    }

    .dsc-header__menu .sub-menu a {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
    }

    .dsc-header__nav-row .dsc-header__container {
        justify-content: flex-end;
    }

    .dsc-header__nav-row.is-stuck {
        padding: 0.3rem 0;
    }
}

@media (max-width: 782px) {
    body.admin-bar {
        --dsc-admin-offset: 46px;
    }

    body.admin-bar .dsc-header {
        top: var(--dsc-admin-offset, 46px);
    }

    body.admin-bar .dsc-header__nav-row.is-stuck {
        top: var(--dsc-admin-offset, 0px);
    }
}

@media (max-width: 480px) {
    .dsc-header__container {
        padding: 0 1rem;
    }

    .dsc-header__logo-img {
        max-height: 42px;
    }

    .dsc-header__brand-name {
        font-size: 1.15rem;
    }

    .dsc-header__search-btn {
        width: 38px;
        height: 38px;
    }

    .dsc-header__nav {
        width: 280px;
        right: -280px;
    }

    .dsc-header__nav.is-open {
        right: 0;
    }
}

.dsc-header--style-split {
    padding: 0.95rem 1.35rem 0;
    background: transparent;
}

.dsc-header--style-split .dsc-header__top,
.dsc-header--style-split .dsc-header__nav-row {
    border-bottom: none;
}

.dsc-header--style-split .dsc-header__top .dsc-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0.62rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dsc-header--style-split .dsc-header__nav-row {
    margin-top: 0;
}

.dsc-header--style-split .dsc-header__nav-row .dsc-header__container {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    min-height: 74px;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.dsc-header--style-split .dsc-header__nav {
    display: flex;
    width: 100%;
    justify-self: center;
    justify-content: center;
}

.dsc-header--style-split .dsc-header__menu {
    gap: 1.35rem;
}

.dsc-header--style-split .dsc-header__top-left,
.dsc-header--style-split .dsc-header__top-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.dsc-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    border: 0;
    border-radius: 0;
    font-size: 0.69rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.dsc-header__eyebrow::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #7aa7ff;
    box-shadow: none;
}

.dsc-header--style-split .dsc-header__contact,
.dsc-header__address {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.88rem;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.dsc-header--style-split .dsc-header__contact:hover,
.dsc-header--style-split .dsc-header__contact:focus-visible,
.dsc-header__address:hover,
.dsc-header__address:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.dsc-header__nav-brand {
    min-width: 0;
}

.dsc-header__address svg,
.dsc-header--style-split .dsc-header__contact svg {
    opacity: 0.78;
    flex-shrink: 0;
}

.dsc-header--style-split .dsc-header__brand-text {
    max-width: 200px;
    gap: 0.2rem;
}

.dsc-header--style-split .dsc-header__brand-name {
    font-size: 1.28rem;
    letter-spacing: 0.07em;
}

.dsc-header--style-split .dsc-header__tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    line-height: 1.42;
    letter-spacing: 0.02em;
}

.dsc-header--style-split .dsc-header__logo-img {
    max-height: min(var(--starter-header-logo-height, 68px), 52px);
    width: auto;
    max-width: min(168px, 15vw);
}

.dsc-header--style-split .dsc-header__search-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.dsc-header--style-split .dsc-header__search-btn:hover {
    transform: translateY(-1px);
}

.dsc-header--style-split .dsc-header__nav-row .dsc-header__container {
    justify-content: initial;
}

.dsc-header--style-split .dsc-mobile-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
}

.dsc-header__nav-actions {
    position: relative;
    right: auto;
    top: auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-end;
    transform: none;
}

.dsc-header__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.dsc-header__nav-btn:hover,
.dsc-header__nav-btn:focus-visible {
    transform: translateY(-2px);
}

.dsc-header__nav-btn--ghost {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dsc-header__nav-btn--ghost:hover,
.dsc-header__nav-btn--ghost:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.dsc-header__nav-btn--primary {
    color: var(--starter-header-cta-color, #ffffff);
    background: linear-gradient(135deg, var(--starter-header-cta-bg, #fc191d) 0%, #ff3b45 100%);
    border: 1px solid transparent;
    box-shadow: 0 16px 28px rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.22);
}

.dsc-header__nav-btn--primary:hover,
.dsc-header__nav-btn--primary:focus-visible {
    box-shadow: 0 20px 34px rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.32);
}

.dsc-header__mobile-actions {
    display: none;
}

.dsc-header__mobile-meta,
.dsc-premium-header__mobile-meta {
    display: none;
}

.dsc-header--style-split .dsc-header__menu>li>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0.05rem;
    padding-right: 0.05rem;
    font-size: 0.82rem;
    line-height: 1;
    letter-spacing: 0.14em;
    border-radius: 0;
}

.dsc-header--style-split .dsc-header__menu>li {
    display: flex;
    align-items: center;
}

.dsc-header--style-split .dsc-header__menu>li>a::after {
    left: 0;
    right: 0;
    bottom: 1.15rem;
    height: 2px;
    transform-origin: center;
}

.dsc-header--style-split .dsc-header__menu>li>a:hover,
.dsc-header--style-split .dsc-header__menu>li>a:focus-visible,
.dsc-header--style-split .dsc-header__menu>li.current-menu-item>a,
.dsc-header--style-split .dsc-header__menu>li.current-menu-ancestor>a,
.dsc-header--style-split .dsc-header__menu>li.current_page_item>a {
    background: transparent;
}

.dsc-header--style-split .dsc-header__menu .sub-menu {
    background: rgba(12, 15, 24, 0.98);
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.dsc-header--style-split .dsc-header__menu .sub-menu a {
    border-radius: 10px;
}

.dsc-header--style-split .dsc-header__menu .sub-menu a:hover {
    padding-left: 1.3rem;
}

.dsc-header--style-split .dsc-header__nav-row.is-stuck {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.55rem 1.35rem 0;
}

.dsc-header--style-split .dsc-header__nav-row.is-stuck .dsc-header__container {
    min-height: 72px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.26),
        0 8px 20px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.dsc-header--style-split .dsc-header__nav-row.is-stuck .dsc-header__container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(8, 10, 16, 0.62) 0%, rgba(13, 14, 22, 0.58) 54%, rgba(28, 11, 16, 0.56) 100%);
    backdrop-filter: blur(24px) saturate(155%) brightness(0.72);
    -webkit-backdrop-filter: blur(24px) saturate(155%) brightness(0.72);
}

.dsc-header--style-split.dsc-header--transparent .dsc-header__nav-row .dsc-header__container {
    background: transparent;
}

.dsc-header--style-split.dsc-header--transparent .dsc-header__tagline {
    display: none;
}

.dsc-header--style-split.dsc-header--transparent .dsc-header__brand-name {
    font-size: 1.15rem;
}

.dsc-header--style-split.dsc-header--transparent .dsc-header__logo-img {
    max-height: 48px;
    max-width: min(150px, 14vw);
}

.dsc-header--style-split:not(.dsc-header--transparent) .dsc-header__nav-row .dsc-header__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background:
        linear-gradient(135deg, rgba(9, 11, 18, 0.88) 0%, rgba(15, 15, 25, 0.88) 52%, rgba(31, 13, 19, 0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.dsc-header--style-premium {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: linear-gradient(180deg, #131522 0%, #161627 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.35s ease, transform 0.35s ease;
}

body.admin-bar .dsc-header--style-premium {
    top: var(--dsc-admin-offset, 32px);
}

.dsc-header--style-premium+.site-content,
.dsc-header--style-premium~.site-content {
    padding-top: var(--starter-spacing-2xl);
}

.dsc-premium-header__container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.dsc-premium-header__topbar {
    position: relative;
    z-index: 2;
    background: rgba(15, 16, 28, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dsc-premium-header__topbar .dsc-premium-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.dsc-premium-header__topbar-left,
.dsc-premium-header__topbar-right {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.dsc-premium-header__topbar-right {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.dsc-premium-header__tagline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding-left: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.94;
}

.dsc-premium-header__tagline::before {
    content: "PK";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: #7aa7ff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.dsc-premium-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.dsc-premium-header__pill:hover,
.dsc-premium-header__pill:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.dsc-premium-header__pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.9rem;
    height: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
}

.dsc-premium-header__pill-icon svg {
    width: 100%;
    height: 100%;
}

.dsc-premium-header__main {
    position: relative;
    z-index: 3;
    margin-top: 0;
    background: rgba(18, 19, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dsc-header--style-premium.dsc-header--sticky-enabled .dsc-premium-header__main {
    position: sticky;
    top: 0;
}

body.admin-bar .dsc-header--style-premium.dsc-header--sticky-enabled .dsc-premium-header__main {
    top: var(--dsc-admin-offset, 0px);
}

.dsc-premium-header__main .dsc-premium-header__container {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 78px;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, min-height 0.35s ease;
}

.dsc-header--style-premium.is-scrolled .dsc-premium-header__main {
    background: rgba(14, 15, 25, 0.98);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.dsc-header--style-premium.is-scrolled .dsc-premium-header__main .dsc-premium-header__container {
    min-height: 72px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.dsc-premium-header__brand {
    min-width: 0;
}

.dsc-premium-header__brand-link {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
    min-width: 0;
}

.dsc-premium-header__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    padding: 0.45rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff2931 0%, #bb1520 100%);
    border: 0;
    box-shadow: 0 12px 24px rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.28);
    overflow: hidden;
    flex-shrink: 0;
}

.dsc-premium-header__badge::before {
    display: none;
}

.dsc-premium-header__badge--has-logo {
    min-width: 0;
    min-height: 0;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.dsc-premium-header__badge--fallback {
    justify-content: center;
}

.dsc-premium-header__logo-media,
.dsc-premium-header__logo-fallback {
    position: relative;
    z-index: 1;
}

.dsc-premium-header__logo-media {
    display: block;
    width: auto;
    max-width: min(170px, 18vw);
    max-height: min(var(--starter-header-logo-height, 68px), 52px);
    object-fit: contain;
}

.dsc-premium-header__logo-media--sticky {
    display: none;
    max-width: min(160px, 17vw);
    max-height: min(var(--starter-header-sticky-logo-height, 60px), 46px);
}

.dsc-header--style-premium.is-scrolled .dsc-premium-header__logo-media--default {
    display: none;
}

.dsc-header--style-premium.is-scrolled .dsc-premium-header__logo-media--sticky {
    display: block;
}

.dsc-premium-header__logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.5rem;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.dsc-premium-header__brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.dsc-premium-header__brand-name {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.05;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dsc-premium-header__brand-tagline {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.76rem;
    line-height: 1.4;
    max-width: 290px;
}

.dsc-premium-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 0;
}

.dsc-premium-header__menu,
.dsc-premium-header__nav>div>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dsc-premium-header__menu>li,
.dsc-premium-header__nav>div>ul>li {
    position: relative;
    list-style: none;
}

.dsc-premium-header__menu>li>a,
.dsc-premium-header__nav>div>ul>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    padding: 0 0.45rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    background: transparent;
    transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
    white-space: nowrap;
}

.dsc-premium-header__menu>li>a::after,
.dsc-premium-header__nav>div>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0.45rem;
    right: 0.45rem;
    bottom: 1.32rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff3942 0%, #ff6a72 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.dsc-premium-header__menu>li>a:hover,
.dsc-premium-header__menu>li>a:focus-visible,
.dsc-premium-header__menu>li.current-menu-item>a,
.dsc-premium-header__menu>li.current-menu-ancestor>a,
.dsc-premium-header__menu>li.current_page_item>a,
.dsc-premium-header__nav>div>ul>li>a:hover,
.dsc-premium-header__nav>div>ul>li>a:focus-visible,
.dsc-premium-header__nav>div>ul>li.current-menu-item>a,
.dsc-premium-header__nav>div>ul>li.current-menu-ancestor>a,
.dsc-premium-header__nav>div>ul>li.current_page_item>a {
    color: #ffffff;
    background: transparent;
}

.dsc-premium-header__menu>li>a:hover::after,
.dsc-premium-header__menu>li.current-menu-item>a::after,
.dsc-premium-header__menu>li.current-menu-ancestor>a::after,
.dsc-premium-header__menu>li.current_page_item>a::after,
.dsc-premium-header__nav>div>ul>li>a:hover::after,
.dsc-premium-header__nav>div>ul>li.current-menu-item>a::after,
.dsc-premium-header__nav>div>ul>li.current-menu-ancestor>a::after,
.dsc-premium-header__nav>div>ul>li.current_page_item>a::after {
    transform: scaleX(1);
}

.dsc-premium-header__menu .menu-item-has-children>a,
.dsc-premium-header__nav>div>ul .menu-item-has-children>a {
    padding-right: 1.2rem;
}

.dsc-premium-header__menu .menu-item-has-children>a::before,
.dsc-premium-header__nav>div>ul .menu-item-has-children>a::before {
    content: "";
    position: absolute;
    right: 0.1rem;
    top: 50%;
    width: 0.42rem;
    height: 0.42rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: 0.7;
    transition: transform 0.28s ease;
}

.dsc-premium-header__menu .menu-item-has-children:hover>a::before,
.dsc-premium-header__menu .menu-item-has-children:focus-within>a::before,
.dsc-premium-header__nav>div>ul .menu-item-has-children:hover>a::before,
.dsc-premium-header__nav>div>ul .menu-item-has-children:focus-within>a::before {
    transform: translateY(-35%) rotate(225deg);
}

.dsc-premium-header__menu .sub-menu,
.dsc-premium-header__nav>div>ul .sub-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    min-width: 240px;
    padding: 0.6rem;
    margin: 0;
    list-style: none;
    background: rgba(14, 18, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    z-index: 100;
}

.dsc-premium-header__menu li:hover>.sub-menu,
.dsc-premium-header__menu li:focus-within>.sub-menu,
.dsc-premium-header__nav>div>ul li:hover>.sub-menu,
.dsc-premium-header__nav>div>ul li:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dsc-premium-header__menu .sub-menu a,
.dsc-premium-header__nav>div>ul .sub-menu a {
    display: flex;
    align-items: center;
    padding: 0.78rem 0.95rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.dsc-premium-header__menu .sub-menu a:hover,
.dsc-premium-header__menu .sub-menu a:focus-visible,
.dsc-premium-header__nav>div>ul .sub-menu a:hover,
.dsc-premium-header__nav>div>ul .sub-menu a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.dsc-premium-header__menu .sub-menu .sub-menu,
.dsc-premium-header__nav>div>ul .sub-menu .sub-menu {
    top: -0.6rem;
    left: calc(100% + 0.55rem);
    transform: translate(0, 12px);
}

.dsc-premium-header__menu .sub-menu li:hover>.sub-menu,
.dsc-premium-header__menu .sub-menu li:focus-within>.sub-menu,
.dsc-premium-header__nav>div>ul .sub-menu li:hover>.sub-menu,
.dsc-premium-header__nav>div>ul .sub-menu li:focus-within>.sub-menu {
    transform: translate(0, 0);
}

.dsc-premium-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    min-width: 0;
}

.dsc-premium-header__search {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0;
    transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.dsc-premium-header__search:hover,
.dsc-premium-header__search:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.dsc-premium-header__search svg {
    width: 1.05rem;
    height: 1.05rem;
}

.dsc-premium-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.92rem 1.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.dsc-premium-header__button:hover,
.dsc-premium-header__button:focus-visible {
    transform: translateY(-2px);
}

.dsc-premium-header__button--ghost {
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dsc-premium-header__button--ghost:hover,
.dsc-premium-header__button--ghost:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.dsc-premium-header__button--primary {
    color: var(--starter-header-cta-color, #ffffff);
    background: linear-gradient(135deg, #ff2c35 0%, #d81924 100%);
    border: 1px solid transparent;
    box-shadow: 0 14px 28px rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.26);
}

.dsc-premium-header__button--primary:hover,
.dsc-premium-header__button--primary:focus-visible {
    box-shadow: 0 20px 36px rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.34);
}

.dsc-premium-header__button--desktop-secondary {
    display: none;
}

.dsc-premium-header__mobile-actions {
    display: none;
}

.dsc-header--style-premium .dsc-mobile-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.dsc-header--style-premium .dsc-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dsc-header--style-premium .dsc-mobile-toggle span {
    width: 20px;
}

@media (max-width: 1200px) {

    .dsc-header__address,
    .dsc-header__nav-actions .dsc-header__nav-btn--ghost {
        display: none;
    }

    .dsc-header--style-split .dsc-header__nav-row .dsc-header__container {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) auto;
        gap: 1rem;
    }

    .dsc-header--style-split .dsc-header__menu {
        gap: 0.9rem;
    }

    .dsc-header--style-split .dsc-header__menu>li>a {
        font-size: 0.77rem;
        letter-spacing: 0.09em;
    }

    .dsc-premium-header__main .dsc-premium-header__container {
        grid-template-columns: minmax(240px, 1fr) auto;
        row-gap: 1rem;
    }

    .dsc-premium-header__nav {
        order: 3;
        grid-column: 1 / -1;
    }

    .dsc-premium-header__actions {
        justify-self: end;
    }

    .dsc-premium-header__button--desktop-secondary {
        display: none;
    }
}

@media (max-width: 1024px) {
    .dsc-header--style-split {
        padding: 0.75rem 0.75rem 0;
    }

    .dsc-header--style-premium {
        padding: 0.75rem 0.75rem 0;
    }

    .dsc-header--style-split .dsc-header__top,
    .dsc-header--style-premium .dsc-premium-header__topbar {
        display: none;
    }

    .dsc-header--style-split .dsc-header__top .dsc-header__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding-bottom: 0.65rem;
    }

    .dsc-header--style-split .dsc-header__top-right {
        justify-content: flex-start;
    }

    .dsc-header__mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
    }

    .dsc-header__mobile-actions .dsc-header__nav-btn {
        width: 100%;
        min-height: 52px;
        border-radius: 18px;
    }

    .dsc-header__mobile-meta,
    .dsc-premium-header__mobile-meta {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        margin-top: 0.85rem;
        padding: 0.85rem 0 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .dsc-header__mobile-meta-title,
    .dsc-premium-header__mobile-meta-title {
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1.45;
        text-transform: uppercase;
    }

    .dsc-header__mobile-meta-list,
    .dsc-premium-header__mobile-meta-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .dsc-header__mobile-meta-item,
    .dsc-premium-header__mobile-meta-item {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 0.78rem 0;
        color: rgba(255, 255, 255, 0.78);
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        font-size: 0.78rem;
        line-height: 1.45;
        text-decoration: none;
        word-break: break-word;
    }

    .dsc-header__mobile-meta-item:last-child,
    .dsc-premium-header__mobile-meta-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .dsc-header__mobile-meta-item svg,
    .dsc-premium-header__mobile-meta-item svg {
        flex-shrink: 0;
        opacity: 0.82;
        margin-top: 0.1rem;
    }

    .dsc-header--style-split .dsc-header__nav-row .dsc-header__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        min-height: 70px;
        padding: 0.85rem 1rem;
        background:
            linear-gradient(135deg, rgba(9, 11, 18, 0.88) 0%, rgba(15, 15, 25, 0.88) 52%, rgba(31, 13, 19, 0.82) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
    }

    .dsc-header--style-split .dsc-header__nav-brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .dsc-header--style-split .dsc-header__nav {
        position: fixed;
        top: calc(var(--dsc-admin-offset, 0px) + 82px);
        right: 0.75rem;
        width: min(380px, calc(100vw - 1.5rem));
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 94px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 94px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.9rem;
        padding: 1rem 1rem 1.15rem;
        background:
            linear-gradient(180deg, rgba(7, 9, 15, 0.998) 0%, rgba(11, 13, 20, 0.994) 50%, rgba(15, 12, 18, 0.992) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
        transform: translate3d(calc(100% + 1rem), 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 10010;
    }

    body.admin-bar .dsc-header--style-split .dsc-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 82px);
    }

    .dsc-header--style-split .dsc-header__nav.is-open {
        transform: translate3d(0, 0, 0) !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dsc-header--style-split .dsc-header__menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .dsc-header--style-split .dsc-header__menu>li {
        display: block;
    }

    .dsc-submenu-toggle {
        position: absolute;
        top: 50%;
        right: 0.8rem;
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
        color: rgba(255, 255, 255, 0.76);
        cursor: pointer;
        padding: 0;
        transform: translateY(-50%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .dsc-submenu-toggle:hover,
    .dsc-submenu-toggle:focus-visible {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .dsc-submenu-toggle span {
        width: 0.52rem;
        height: 0.52rem;
        border-right: 1.7px solid currentColor;
        border-bottom: 1.7px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.25s ease;
    }

    .menu-item-has-children.is-submenu-open>.dsc-submenu-toggle span {
        transform: rotate(225deg);
    }

    .dsc-header--style-split .dsc-header__menu>li>a {
        width: 100%;
        min-height: 56px;
        padding: 0.95rem 3.65rem 0.95rem 1.15rem;
        justify-content: flex-start;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.12em;
    }

    .dsc-header--style-split .dsc-header__menu>li>a::after {
        display: none;
    }

    .dsc-header--style-split .dsc-header__menu>li>a:hover,
    .dsc-header--style-split .dsc-header__menu>li>a:focus-visible,
    .dsc-header--style-split .dsc-header__menu>li.current-menu-item>a,
    .dsc-header--style-split .dsc-header__menu>li.current-menu-ancestor>a,
    .dsc-header--style-split .dsc-header__menu>li.current_page_item>a {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.22);
        color: #ffffff;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    .dsc-header--style-split .dsc-header__menu .sub-menu,
    .dsc-header--style-split .dsc-header__menu .sub-menu .sub-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        margin: 0.45rem 0 0.7rem 0.85rem;
        padding: 0.4rem 0 0 0.9rem;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 0;
        background: transparent;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .dsc-header--style-split .dsc-header__menu>li.is-submenu-open>.sub-menu,
    .dsc-header--style-split .dsc-header__menu .sub-menu>li.is-submenu-open>.sub-menu {
        display: block;
    }

    .dsc-header--style-split .dsc-header__menu .sub-menu a {
        padding: 0.76rem 1rem 0.76rem 1.05rem;
        font-size: 0.84rem;
        border-radius: 14px;
        color: rgba(255, 255, 255, 0.72);
    }

    .dsc-header--style-split .dsc-header__nav-actions {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        justify-content: flex-end;
        margin-left: auto;
    }

    .dsc-header--style-split .dsc-header__nav-actions .dsc-header__nav-btn {
        display: none;
    }

    .dsc-header--style-split .dsc-header__nav-actions .dsc-header__search-btn {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .dsc-header--style-split .dsc-mobile-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
    }

    .dsc-premium-header__container {
        padding: 0 1.1rem;
    }

    .dsc-premium-header__topbar .dsc-premium-header__container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .dsc-premium-header__tagline {
        letter-spacing: 0.18em;
    }

    .dsc-premium-header__main .dsc-premium-header__container {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 78px;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .dsc-premium-header__nav {
        position: fixed;
        top: calc(var(--dsc-admin-offset, 0px) + 82px);
        right: 0.75rem;
        width: min(380px, calc(100vw - 1.5rem));
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 94px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 94px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.95rem;
        padding: 1rem 1rem 1.2rem;
        background:
            linear-gradient(180deg, rgba(7, 9, 16, 0.998) 0%, rgba(16, 16, 28, 0.994) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
        transform: translate3d(calc(100% + 1rem), 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 10010;
    }

    body.admin-bar .dsc-premium-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 82px);
    }

    .dsc-premium-header__nav.is-open {
        transform: translate3d(0, 0, 0) !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dsc-premium-header__menu,
    .dsc-premium-header__nav>div>ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.2rem;
    }

    .dsc-premium-header__menu>li>a,
    .dsc-premium-header__nav>div>ul>li>a {
        width: 100%;
        min-height: 56px;
        padding: 0.98rem 3.65rem 0.98rem 1.15rem;
        letter-spacing: 0.1em;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    }

    .dsc-premium-header__menu .menu-item-has-children>a::before,
    .dsc-premium-header__nav>div>ul .menu-item-has-children>a::before {
        display: none;
    }

    .dsc-premium-header__menu>li>a::after,
    .dsc-premium-header__nav>div>ul>li>a::after {
        display: none;
    }

    .dsc-premium-header__menu .sub-menu,
    .dsc-premium-header__nav>div>ul .sub-menu,
    .dsc-premium-header__menu .sub-menu .sub-menu,
    .dsc-premium-header__nav>div>ul .sub-menu .sub-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        margin: 0.45rem 0 0.7rem 0.85rem;
        padding: 0.4rem 0 0 0.9rem;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        border: none;
        background: transparent;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .dsc-premium-header__menu>li.is-submenu-open>.sub-menu,
    .dsc-premium-header__menu .sub-menu>li.is-submenu-open>.sub-menu,
    .dsc-premium-header__nav>div>ul>li.is-submenu-open>.sub-menu,
    .dsc-premium-header__nav>div>ul .sub-menu>li.is-submenu-open>.sub-menu {
        display: block;
    }

    .dsc-premium-header__menu .sub-menu a,
    .dsc-premium-header__nav>div>ul .sub-menu a {
        padding: 0.72rem 0.9rem;
    }

    .dsc-premium-header__search {
        width: 42px;
        height: 42px;
    }

    .dsc-premium-header__button--desktop-secondary {
        display: none;
    }

    .dsc-premium-header__mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
    }

    .dsc-premium-header__mobile-actions .dsc-premium-header__button {
        width: 100%;
        min-height: 52px;
        border-radius: 18px;
    }

    .dsc-header--style-premium .dsc-mobile-toggle {
        display: inline-flex;
    }
}

@media (max-width: 782px) {
    body.admin-bar .dsc-header--style-premium {
        top: var(--dsc-admin-offset, 46px);
    }

    body.admin-bar .dsc-header--style-premium.dsc-header--sticky-enabled .dsc-premium-header__main {
        top: var(--dsc-admin-offset, 0px);
    }
}

@media (max-width: 640px) {
    .dsc-header--style-split {
        padding: 0.55rem 0.55rem 0;
    }

    .dsc-header--style-split .dsc-header__nav-row .dsc-header__container {
        min-height: 66px;
        padding: 0.78rem 0.9rem;
        border-radius: 16px;
    }

    .dsc-header--style-split .dsc-header__logo-link {
        gap: 0.75rem;
    }

    .dsc-header--style-split .dsc-header__brand-name {
        font-size: 1.08rem;
    }

    .dsc-header--style-split .dsc-header__tagline {
        display: none;
    }

    .dsc-header--style-split .dsc-header__logo-img {
        max-width: 132px;
        max-height: 40px;
    }

    .dsc-header--style-split .dsc-header__brand-name {
        font-size: 1rem;
    }

    .dsc-header--style-split .dsc-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 72px);
        right: 0.5rem;
        width: calc(100vw - 1rem);
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 80px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 80px);
        padding: 0.85rem 0.85rem 1rem;
        border-radius: 20px;
    }

    .dsc-header--style-premium {
        padding: 0.5rem 0.5rem 0;
    }

    .dsc-premium-header__container {
        padding: 0 0.9rem;
    }

    .dsc-premium-header__topbar .dsc-premium-header__container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .dsc-premium-header__topbar-left,
    .dsc-premium-header__topbar-right {
        width: 100%;
    }

    .dsc-premium-header__topbar-right {
        justify-content: flex-start;
    }

    .dsc-premium-header__main .dsc-premium-header__container {
        gap: 0.9rem;
    }

    .dsc-premium-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 72px);
        right: 0.5rem;
        width: calc(100vw - 1rem);
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 80px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 80px);
        padding: 0.9rem 0.85rem 1rem;
        border-radius: 20px;
    }

    .dsc-premium-header__brand-link {
        gap: 0.75rem;
    }

    .dsc-premium-header__badge {
        min-width: 62px;
        min-height: 62px;
        border-radius: 16px;
    }

    .dsc-premium-header__logo-media {
        max-height: min(var(--starter-header-logo-height, 68px), 48px);
    }

    .dsc-premium-header__logo-media--sticky {
        max-height: min(var(--starter-header-sticky-logo-height, 60px), 44px);
    }

    .dsc-premium-header__brand-name {
        font-size: 1.05rem;
    }

    .dsc-premium-header__brand-tagline {
        display: none;
    }

    .dsc-premium-header__search {
        display: none;
    }

    .dsc-premium-header__button--primary {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}


.site-content {
    padding: var(--starter-spacing-3xl) 0;
    min-height: calc(100vh - var(--starter-header-height) - 200px);
}

.starter-post {
    background: #ffffff;
    border: 1px solid var(--starter-color-border);
    border-radius: var(--starter-radius-md);
    overflow: hidden;
    margin-bottom: var(--starter-spacing-xl);
    transition: box-shadow var(--starter-transition), transform var(--starter-transition);
}

.starter-post:hover {
    box-shadow: var(--starter-shadow-lg);
    transform: translateY(-2px);
}

.starter-post .post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.starter-post .post-content {
    padding: var(--starter-spacing-xl);
}

.entry-header {
    margin-bottom: var(--starter-spacing-lg);
}

.entry-title {
    font-size: 1.75rem;
    margin-bottom: var(--starter-spacing-sm);
}

.entry-title a {
    color: var(--starter-color-dark);
    transition: color var(--starter-transition-fast);
}

.entry-title a:hover {
    color: var(--starter-color-primary);
}

.entry-meta {
    color: var(--starter-color-text-light);
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--starter-spacing-md);
}

.entry-meta a {
    color: var(--starter-color-text-light);
}

.entry-meta a:hover {
    color: var(--starter-color-primary);
}

.entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: var(--starter-spacing-lg);
}

.entry-content a,
.entry-summary a,
.comment-content a,
.widget_text a,
.textwidget a {
    text-decoration: underline;
    text-underline-offset: 0.14em;
    text-decoration-thickness: 1.5px;
}

.entry-content .starter-btn,
.entry-summary .starter-btn,
.comment-content .starter-btn,
.widget_text .starter-btn,
.textwidget .starter-btn,
.entry-content .wp-block-button__link,
.entry-summary .wp-block-button__link,
.comment-content .wp-block-button__link,
.widget_text .wp-block-button__link,
.textwidget .wp-block-button__link {
    text-decoration: none;
}

.entry-content a:hover,
.entry-content a:focus,
.entry-content a:focus-visible,
.entry-summary a:hover,
.entry-summary a:focus,
.entry-summary a:focus-visible,
.comment-content a:hover,
.comment-content a:focus,
.comment-content a:focus-visible,
.widget_text a:hover,
.widget_text a:focus,
.widget_text a:focus-visible,
.textwidget a:hover,
.textwidget a:focus,
.textwidget a:focus-visible {
    text-decoration-thickness: 2px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: var(--starter-spacing-lg);
    padding-left: var(--starter-spacing-xl);
}

.entry-content li {
    margin-bottom: var(--starter-spacing-sm);
}

.entry-footer {
    margin-top: var(--starter-spacing-xl);
    padding-top: var(--starter-spacing-lg);
    border-top: 1px solid var(--starter-color-border);
}

.entry-footer .tags a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--starter-color-bg-alt);
    border-radius: var(--starter-radius-full);
    font-size: 0.8125rem;
    margin-right: var(--starter-spacing-xs);
    margin-bottom: var(--starter-spacing-xs);
    color: var(--starter-color-text-light);
    transition: all var(--starter-transition-fast);
}

.entry-footer .tags a:hover {
    background: var(--starter-color-primary);
    color: #ffffff;
}

.single-post .entry-title {
    font-size: 2.25rem;
}

.single-post .post-thumbnail {
    margin-bottom: var(--starter-spacing-xl);
    border-radius: var(--starter-radius-md);
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-navigation {
    margin-top: var(--starter-spacing-2xl);
    padding: var(--starter-spacing-lg) 0;
    border-top: 1px solid var(--starter-color-border);
    border-bottom: 1px solid var(--starter-color-border);
}

.archive-header {
    margin-bottom: var(--starter-spacing-2xl);
}

.archive-title {
    font-size: 2rem;
}

.archive-description {
    color: var(--starter-color-text-light);
    font-size: 1.0625rem;
    margin-top: var(--starter-spacing-sm);
}

.comments-area {
    margin-top: var(--starter-spacing-3xl);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    padding: var(--starter-spacing-lg);
    margin-bottom: var(--starter-spacing-lg);
    background: var(--starter-color-bg-alt);
    border-radius: var(--starter-radius-md);
}

.error-404 {
    text-align: center;
    padding: var(--starter-spacing-3xl) 0;
}

.error-404 h1 {
    font-size: 6rem;
    color: var(--starter-color-primary);
    margin-bottom: var(--starter-spacing-md);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--starter-spacing-sm);
    margin-top: var(--starter-spacing-2xl);
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--starter-spacing-sm);
    border: 1px solid var(--starter-color-border);
    border-radius: var(--starter-radius-sm);
    font-weight: 500;
    transition: all var(--starter-transition-fast);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--starter-color-primary);
    border-color: var(--starter-color-primary);
    color: #ffffff;
}


/* ==========================================================================
   7.0 - Sidebar & Widgets
   ========================================================================== */

.starter-sidebar {
    position: sticky;
    top: calc(var(--starter-header-height) + var(--starter-spacing-xl));
}

.widget {
    margin-bottom: var(--starter-spacing-xl);
    padding: var(--starter-spacing-lg);
    background: #ffffff;
    border: 1px solid var(--starter-color-border);
    border-radius: var(--starter-radius-md);
}

.widget-title {
    font-size: 1.125rem;
    padding-bottom: var(--starter-spacing-sm);
    margin-bottom: var(--starter-spacing-lg);
    border-bottom: 2px solid var(--starter-color-primary);
    position: relative;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: var(--starter-spacing-sm) 0;
    border-bottom: 1px solid var(--starter-color-border);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--starter-color-text);
    transition: color var(--starter-transition-fast);
}

.widget ul li a:hover {
    color: var(--starter-color-primary);
}


/* ==========================================================================
   8.0 - Footer
   ========================================================================== */

.site-footer {
    background: var(--starter-footer-bg, var(--starter-color-dark));
    color: var(--starter-footer-text, rgba(255, 255, 255, 0.7));
    padding: var(--starter-spacing-3xl) 0 var(--starter-spacing-xl);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    transition: color var(--starter-transition-fast);
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-widgets {
    margin-bottom: var(--starter-spacing-2xl);
}

.footer-widget-area .widget {
    background: transparent;
    border: none;
    padding: 0;
}

.footer-widget-area .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.footer-widget-area .widget ul li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-info {
    text-align: center;
    padding-top: var(--starter-spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}


/* ==========================================================================
   9.0 - Forms & Buttons
   ========================================================================== */

/* Buttons */
.starter-btn,
button,
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--starter-spacing-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--starter-font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    background: var(--starter-color-primary);
    border: 2px solid var(--starter-color-primary);
    border-radius: var(--starter-radius-md);
    cursor: pointer;
    transition: all var(--starter-transition-fast);
    text-decoration: none;
}

.starter-btn:hover,
button:hover,
input[type="submit"]:hover {
    background: var(--starter-color-secondary);
    border-color: var(--starter-color-secondary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: var(--starter-shadow-md);
}

.starter-btn--outline {
    background: transparent;
    color: var(--starter-color-primary);
}

.starter-btn--outline:hover {
    background: var(--starter-color-primary);
    color: #ffffff;
}

.starter-btn--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--starter-color-primary);
}

.starter-btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.starter-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--starter-font-primary);
    font-size: 0.9375rem;
    color: var(--starter-color-text);
    background: #ffffff;
    border: 1px solid var(--starter-color-border);
    border-radius: var(--starter-radius-md);
    transition: border-color var(--starter-transition-fast), box-shadow var(--starter-transition-fast);
    appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--starter-color-primary);
    box-shadow: 0 0 0 3px rgba(var(--starter-color-primary-rgb), 0.15);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--starter-spacing-xs);
    color: var(--starter-color-dark);
}

.search-form {
    display: flex;
    gap: var(--starter-spacing-sm);
}

.search-form .search-field {
    flex: 1;
}


/* ==========================================================================
   10.0 - Page Builder Compatibility
   ========================================================================== */

/**
 * Elementor Compatibility
 * Ensures full-width sections and proper rendering inside the Elementor editor.
 */
.elementor-page .site-content .starter-container {
    max-width: 100%;
    padding: 0;
}

.elementor-page .site-content {
    padding: 0;
}

.elementor-section.elementor-section-stretched {
    max-width: 100%;
}

/* Fix Elementor widget spacing conflicts */
.elementor-widget:not(:last-child) {
    margin-bottom: var(--starter-spacing-lg);
}

/* Elementor editor panel adjustments */
body.elementor-editor-active .site-header {
    position: relative;
}

/**
 * Divi Builder Compatibility
 * Ensures proper rendering for Divi sections, rows, and modules.
 */
.et-db #et-boc .et-l .site-content .starter-container {
    max-width: 100%;
    padding: 0;
}

.et_pb_section {
    padding: var(--starter-spacing-3xl) 0;
}

.et_pb_fullwidth_section .site-content {
    padding: 0;
}

/* Avada / Fusion Builder basic support */
.fusion-body .site-content .starter-container {
    max-width: 100%;
    padding: 0;
}

/* WPBakery basic support */
.wpb-js-composer .vc_row {
    margin-left: 0;
    margin-right: 0;
}

/* Gutenberg Block Editor */
.wp-block-group.alignfull {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.entry-content .alignwide {
    max-width: var(--starter-container-width);
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   11.0 - WooCommerce Overrides
   ========================================================================== */

.woocommerce ul.products li.product {
    border: 1px solid var(--starter-color-border);
    border-radius: var(--starter-radius-md);
    padding: var(--starter-spacing-lg);
    transition: box-shadow var(--starter-transition);
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--starter-shadow-lg);
}

.woocommerce ul.products li.product .price {
    color: var(--starter-color-primary);
    font-weight: 700;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--starter-color-primary) !important;
    border-radius: var(--starter-radius-md) !important;
    color: #ffffff !important;
    font-weight: 600;
}

.woocommerce .button:hover,
.woocommerce a.button:hover {
    background: var(--starter-color-secondary) !important;
}

.woocommerce-message {
    border-top-color: var(--starter-color-primary);
}

.woocommerce-info {
    border-top-color: var(--starter-color-accent);
}


/* ==========================================================================
   12.0 - WordPress Core Alignments
   ========================================================================== */

.alignleft {
    float: left;
    margin-right: var(--starter-spacing-lg);
    margin-bottom: var(--starter-spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--starter-spacing-lg);
    margin-bottom: var(--starter-spacing-md);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.alignwide {
    max-width: var(--starter-container-width);
}

.wp-caption {
    max-width: 100%;
    margin-bottom: var(--starter-spacing-lg);
}

.wp-caption-text {
    font-size: 0.8125rem;
    color: var(--starter-color-text-light);
    text-align: center;
    margin-top: var(--starter-spacing-sm);
}

.gallery-caption {
    display: block;
}

/* Screen reader text - accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background: #f1f1f1;
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link:focus,
.skip-link:focus-visible {
    background: var(--starter-color-dark);
    color: #ffffff;
    left: var(--starter-spacing-md);
    top: var(--starter-spacing-md);
    text-decoration: none;
    outline: 3px solid #ffffff;
    outline-offset: 0;
}


/* ==========================================================================
   13.0 - Utility Classes
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--starter-spacing-sm);
}

.mt-2 {
    margin-top: var(--starter-spacing-md);
}

.mt-3 {
    margin-top: var(--starter-spacing-lg);
}

.mt-4 {
    margin-top: var(--starter-spacing-xl);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--starter-spacing-sm);
}

.mb-2 {
    margin-bottom: var(--starter-spacing-md);
}

.mb-3 {
    margin-bottom: var(--starter-spacing-lg);
}

.mb-4 {
    margin-bottom: var(--starter-spacing-xl);
}

.pt-0 {
    padding-top: 0;
}

.pt-3 {
    padding-top: var(--starter-spacing-lg);
}

.pb-3 {
    padding-bottom: var(--starter-spacing-lg);
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ==========================================================================
   14.0 - Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --starter-container-width: 960px;
    }

    .starter-layout {
        grid-template-columns: 1fr;
    }

    .starter-layout--left-sidebar {
        grid-template-columns: 1fr;
    }

    .starter-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .starter-grid--2,
    .starter-grid--3 {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--starter-header-height);
        left: 0;
        right: 0;
        background: var(--starter-color-dark);
        padding: var(--starter-spacing-lg);
        box-shadow: var(--starter-shadow-xl);
    }

    .main-navigation.is-open .nav-menu {
        display: flex;
    }

    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: var(--starter-spacing-lg);
    }

    .main-navigation .sub-menu a {
        color: rgba(255, 255, 255, 0.7);
    }

    .main-navigation .nav-menu a:focus,
    .main-navigation .nav-menu a:focus-visible,
    .main-navigation .sub-menu a:focus,
    .main-navigation .sub-menu a:focus-visible {
        outline-color: #ffffff;
        background: rgba(255, 255, 255, 0.16);
    }

    .footer-widgets.starter-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .starter-container {
        padding-left: var(--starter-spacing-md);
        padding-right: var(--starter-spacing-md);
    }

    .starter-post .post-content {
        padding: var(--starter-spacing-lg);
    }

    .site-content {
        padding: var(--starter-spacing-xl) 0;
    }
}


/* ==========================================================================
   15.0 - WordPress Required Classes
   ========================================================================== */

.sticky .starter-post,
.starter-post.sticky {
    border-left: 4px solid var(--starter-color-primary);
}

.bypostauthor .comment-body {
    border-left: 4px solid var(--starter-color-primary);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Search Overlay */
.dsc-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.985);
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dsc-search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dsc-search-container {
    width: min(100%, 860px);
    margin-top: clamp(150px, 22vh, 250px);
    padding: 0 2rem;
}

.dsc-search-form {
    display: block;
}

.dsc-search-overlay .dsc-search-input,
.dsc-search-overlay input[type="search"].dsc-search-input {
    width: 100% !important;
    background: none !important;
    border: none !important;
    border-bottom: 2px solid rgba(252, 25, 29, 0.95) !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: clamp(30px, 4.4vw, 54px) !important;
    padding: 0 0 0.95rem 0 !important;
    outline: none !important;
    font-weight: 300;
    box-shadow: none !important;
    font-family: var(--dsc-font, var(--starter-font-primary, sans-serif));
    letter-spacing: -0.02em;
    line-height: 1.06;
}

.dsc-search-overlay .dsc-search-input::placeholder {
    color: rgba(170, 172, 186, 0.82);
}

.dsc-search-overlay .dsc-search-input:focus,
.dsc-search-overlay input[type="search"].dsc-search-input:focus {
    border-color: #fc191d !important;
    box-shadow: none !important;
}

.dsc-search-close {
    position: absolute;
    top: 34px;
    right: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: none !important;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 54px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    box-shadow: none !important;
    transition: transform 0.25s ease, opacity 0.25s ease;
    padding: 0;
}

.dsc-search-close:hover,
.dsc-search-close:focus,
.dsc-search-close:focus-visible,
.dsc-search-close:active {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

.dsc-search-close span {
    display: block;
    transform: translateY(-2px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dsc-search-close:hover span,
.dsc-search-close:focus-visible span {
    transform: translateY(-2px) rotate(90deg) scale(1.08);
    opacity: 0.82;
}

.dsc-search-trending {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 2rem;
}

.dsc-search-trending__label {
    color: rgba(129, 132, 148, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.dsc-search-trending__item {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.dsc-search-trending__item:hover,
.dsc-search-trending__item:focus-visible {
    color: #fc191d;
    opacity: 1;
}

.dsc-search-results {
    margin-top: 2.25rem;
    max-height: min(42vh, 380px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

.dsc-search-results::-webkit-scrollbar {
    width: 4px;
}

.dsc-search-results::-webkit-scrollbar-thumb {
    background: rgba(252, 25, 29, 0.65);
    border-radius: 999px;
}

.dsc-search-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.045);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.dsc-search-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(6px);
}

.dsc-search-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 0;
}

.dsc-search-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.dsc-search-info p {
    margin: 0.35rem 0 0;
    color: rgba(181, 183, 195, 0.74);
    font-size: 0.92rem;
    line-height: 1.55;
}

.dsc-search-type {
    margin-left: auto;
    background: #fc191d;
    color: #fff;
    font-size: 0.64rem;
    padding: 0.38rem 0.72rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.dsc-search-status {
    color: rgba(181, 183, 195, 0.72);
    text-align: left;
    padding: 0.4rem 0;
    font-size: 0.96rem;
}

@media (max-width: 782px) {
    .dsc-search-close {
        top: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 44px;
    }

    .dsc-search-container {
        margin-top: 140px;
        padding: 0 1.25rem;
    }

    .dsc-search-trending {
        gap: 0.7rem 0.95rem;
    }

    .dsc-search-item {
        align-items: flex-start;
    }

    .dsc-search-type {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .dsc-search-container {
        margin-top: 120px;
        padding: 0 1rem;
    }

    .dsc-search-overlay .dsc-search-input,
    .dsc-search-overlay input[type="search"].dsc-search-input {
        font-size: clamp(24px, 9vw, 40px) !important;
        padding-bottom: 0.8rem !important;
    }

    .dsc-search-trending {
        margin-top: 1.5rem;
    }

    .dsc-search-trending__label,
    .dsc-search-trending__item {
        font-size: 0.68rem;
        letter-spacing: 0.11em;
    }

    .dsc-search-item {
        flex-direction: column;
    }

    .dsc-search-item img {
        width: 100%;
        height: 160px;
    }
}



@media (max-width: 1200px) {
    .dsc-header--style-premium .dsc-premium-header__main .dsc-premium-header__container {
        grid-template-columns: minmax(250px, 1fr) auto auto;
        gap: 1rem;
    }

    .dsc-header--style-premium .dsc-premium-header__menu,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul {
        gap: 0.3rem;
    }

    .dsc-header--style-premium .dsc-premium-header__menu>li>a,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 1024px) {
    .dsc-header--style-premium .dsc-premium-header__topbar .dsc-premium-header__container {
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .dsc-header--style-premium .dsc-premium-header__main .dsc-premium-header__container {
        min-height: 72px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .dsc-header--style-premium .dsc-premium-header__nav {
        background: linear-gradient(180deg, rgba(16, 18, 30, 0.995) 0%, rgba(23, 19, 30, 0.99) 100%);
    }

    .dsc-header--style-premium .dsc-premium-header__menu>li>a,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a {
        min-height: 48px;
        padding: 0.95rem 1rem;
        border-radius: 12px;
    }

    .dsc-header--style-premium .dsc-premium-header__menu>li>a::after,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .dsc-header--style-premium .dsc-premium-header__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dsc-header--style-premium .dsc-premium-header__tagline {
        padding-left: 1.1rem;
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .dsc-header--style-premium .dsc-premium-header__brand-link {
        gap: 0.7rem;
    }

    .dsc-header--style-premium .dsc-premium-header__badge {
        min-width: 48px;
        min-height: 48px;
        border-radius: 14px;
    }

    .dsc-header--style-premium .dsc-premium-header__logo-media {
        max-width: 132px;
        max-height: 40px;
    }

    .dsc-header--style-premium .dsc-premium-header__brand-name {
        font-size: 0.95rem;
    }

    .dsc-header--style-premium .dsc-premium-header__brand-tagline {
        display: none;
    }

    .dsc-header--style-premium .dsc-premium-header__search {
        display: inline-flex;
    }

    .dsc-header--style-premium .dsc-premium-header__button--primary {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 1024px) {

    .dsc-header--style-split .dsc-header__nav,
    .dsc-header--style-premium .dsc-premium-header__nav {
        left: 0;
        right: 0;
        width: 100vw;
        gap: 0.95rem;
        padding: 1.15rem 1rem 1.2rem;
        border: 0;
        border-radius: 0;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
        transform: translate3d(calc(100% + 1rem), 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 10010;
    }

    .dsc-header--style-split .dsc-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 72px);
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 72px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 72px);
        background:
            linear-gradient(180deg, rgba(7, 9, 15, 0.998) 0%, rgba(11, 13, 20, 0.994) 50%, rgba(15, 12, 18, 0.992) 100%);
    }

    .dsc-header--style-premium .dsc-premium-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 72px);
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 72px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 72px);
        background:
            linear-gradient(180deg, rgba(7, 9, 16, 0.998) 0%, rgba(16, 16, 28, 0.994) 100%);
    }

    .dsc-header--style-split .dsc-header__nav.is-open,
    .dsc-header--style-premium .dsc-premium-header__nav.is-open {
        transform: translate3d(0, 0, 0) !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dsc-header--style-split .dsc-header__menu,
    .dsc-header--style-premium .dsc-premium-header__menu,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul {
        gap: 0;
        margin-bottom: 0.15rem;
    }

    .dsc-header--style-split .dsc-header__menu>li,
    .dsc-header--style-premium .dsc-premium-header__menu>li,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li {
        position: relative;
    }

    .dsc-header--style-split .dsc-header__menu>li>a,
    .dsc-header--style-premium .dsc-premium-header__menu>li>a,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a {
        min-height: 56px;
        padding: 0.98rem 3.4rem 0.98rem 0.1rem;
        border-radius: 0;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .dsc-submenu-toggle {
        top: 0.5rem;
        right: 0.7rem;
        transform: none;
    }

    .menu-item-has-children.is-submenu-open>.dsc-submenu-toggle {
        transform: none;
    }

    .dsc-header--style-split .dsc-header__menu>li>a:hover,
    .dsc-header--style-split .dsc-header__menu>li>a:focus-visible,
    .dsc-header--style-split .dsc-header__menu>li.current-menu-item>a,
    .dsc-header--style-split .dsc-header__menu>li.current-menu-ancestor>a,
    .dsc-header--style-split .dsc-header__menu>li.current_page_item>a,
    .dsc-header--style-premium .dsc-premium-header__menu>li>a:hover,
    .dsc-header--style-premium .dsc-premium-header__menu>li>a:focus-visible,
    .dsc-header--style-premium .dsc-premium-header__menu>li.current-menu-item>a,
    .dsc-header--style-premium .dsc-premium-header__menu>li.current-menu-ancestor>a,
    .dsc-header--style-premium .dsc-premium-header__menu>li.current_page_item>a,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a:hover,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a:focus-visible,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li.current-menu-item>a,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li.current-menu-ancestor>a,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li.current_page_item>a {
        background: transparent;
        border-color: rgba(var(--dsc-primary-rgb, 252, 25, 29), 0.28);
        color: #ffffff;
        box-shadow: none;
    }

    .dsc-header--style-premium .dsc-premium-header__menu>li>a::after,
    .dsc-header--style-premium .dsc-premium-header__nav>div>ul>li>a::after {
        display: none;
    }

    .dsc-header--style-split .dsc-header__mobile-actions,
    .dsc-premium-header__mobile-actions {
        margin-top: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .dsc-header__mobile-actions .dsc-header__nav-btn,
    .dsc-premium-header__mobile-actions .dsc-premium-header__button {
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 640px) {

    .dsc-header--style-split .dsc-header__nav,
    .dsc-header--style-premium .dsc-premium-header__nav {
        left: 0;
        right: 0;
        width: 100vw;
        padding: 0.95rem 0.85rem 1rem;
        border-radius: 0;
    }

    .dsc-header--style-split .dsc-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 66px);
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 66px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 66px);
    }

    .dsc-header--style-premium .dsc-premium-header__nav {
        top: calc(var(--dsc-admin-offset, 0px) + 66px);
        height: calc(100vh - var(--dsc-admin-offset, 0px) - 66px);
        height: calc(100dvh - var(--dsc-admin-offset, 0px) - 66px);
    }

    .dsc-submenu-toggle {
        top: 0.42rem;
        right: 0.62rem;
    }
}
