/* ==========================================================================
   D.A.R.T.S. Trading - Master Header Styles
   ========================================================================== */
:root {
    --darts-font-heading: 'League Spartan', sans-serif;
    --darts-font-body: 'Inter', sans-serif;
}

.e-con.e-con>.e-con-inner>.elementor-widget, .elementor.elementor .e-con>.elementor-widget {
    width: 100%;
}
#darts-co-bar {display: none;}
/* ── 1. Base Header & Container ── */
.darts-site-header {
    background-color: #0A0A0A;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.darts-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 16px;
}

/* ── 2. Logo ── */
.darts-logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* ── 3. Desktop Navigation & Right Side ── */
.darts-header-right {
    display: flex;
    align-items: center;
    gap: 180px;
}

/* Strict reset for all WordPress menu lists to remove circles */
.darts-primary-navigation ul,
.darts-primary-navigation li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.darts-primary-navigation .darts-nav-list {
    display: flex;
    align-items: center;
    gap: 30px; /* Spacing between main menu items */
}

/* Make list items relative to anchor the dropdowns */
.darts-primary-navigation .darts-nav-list > li {
    position: relative;
    padding: 10px 0;
}

.darts-primary-navigation .darts-nav-list li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
    display: block;
}

.darts-primary-navigation .darts-nav-list li a:hover {
    color: #ed4137; /* D.A.R.T.S. Orange */
}

/* ── Add Dropdown Arrow to Items with Sub-menus ── */
.darts-nav-list .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid #FFFFFF;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.darts-nav-list .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
    border-top-color: #ed4137;
}

/* ── WordPress Dropdown Sub-menu Styling ── */
.darts-primary-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* Centers the dropdown nicely under the parent */
    background-color: #111111;
    min-width: 248px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    padding: 10px 0;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Show dropdown on hover */
.darts-primary-navigation .darts-nav-list li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 5px;
}

.darts-primary-navigation .sub-menu li a {
    padding: 10px 20px;
    font-size: 14px;
    text-align: left;
}

.darts-primary-navigation .sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ── 4. Action Buttons ── */
.darts-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.darts-btn-login {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.darts-btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.darts-btn-join {
    background-color: #ed4137;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.darts-btn-join:hover {
    background-color: #e65c00;
}

/* ── 5. Mobile Toggle (Hamburger) Base ── */
.darts-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* ==========================================================================
   6. Responsive Breakpoints (Tablet & Mobile)
   ========================================================================== */

@media (max-width: 1024px) {
    .darts-mobile-toggle {
        display: block;
        z-index: 10000;
    }

    .darts-header-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0A0A0A;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        border-top: 1px solid rgba(255,255,255,0.0);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        transition: all 0.4s ease-in-out;
    }

    .darts-header-right.is-active {
        padding: 20px 30px 30px;
        max-height: 800px;
        visibility: visible;
        opacity: 1;
        border-top: 1px solid rgba(255,255,255,0.1);
        gap: 20px;
    }

    .darts-primary-navigation {
        width: 100%;
    }

    .darts-primary-navigation .darts-nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .darts-primary-navigation .darts-nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 0;
    }

    .darts-primary-navigation .darts-nav-list > li > a {
        padding: 15px 0;
        width: 100%;
    }

    /* Adjust sub-menu for mobile (stack it instead of floating) */
    .darts-primary-navigation .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding: 0 0 10px 20px; /* Indent sub-menu items on mobile */
        min-width: 100%;
        display: none; /* Hide via display on mobile to prevent layout gaps */
    }

    .darts-primary-navigation .darts-nav-list li:hover > .sub-menu {
        display: block;
    }

    .darts-primary-navigation .sub-menu li a {
        text-align: left;
        padding: 10px 0;
    }

    .darts-header-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 10px;
    }

    .darts-btn-login, 
    .darts-btn-join {
        width: 100%;
        text-align: center;
    }

    .darts-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .darts-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .darts-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .darts-mobile-toggle button:focus, button:hover{
        background-color: #ed4137 !important;
        color: #ed4137 !important;
    }
    .darts-header-container {
        padding: 12px 20px;
    }
    .darts-logo img {
        height: 30px;
    }
}

/* header css end  */
/* ==========================================================================
   D.A.R.T.S. Trading - Hero Banner Section
   ========================================================================== */
/* ==========================================================================
   D.A.R.T.S. Starter Kit Card (Hero Right Column)
   ========================================================================== */

/* ── 1. Hero Right Column Wrapper ── */
.darts-hero__right {
    width: 100%;
    max-width: 440px; /* Controls the width of the card */
    margin-left: auto; /* Pushes the card to the right side of the flex container */
}

/* ── 2. Card Container ── */
.darts-kit-card {
    background-color: #0c0c0c; /* Deep dark background matching the mockup */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle grey border */
    border-radius: 8px; /* Slightly rounded corners */
    padding: 40px 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7); /* Deep shadow to pop off the hero background */
    width: 100%;
}

/* ── 3. Typography & Headers ── */
.darts-kit-card__label {
    color: #ed4137; /* D.A.R.T.S Orange */
    font-family: var(--darts-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.darts-kit-card__title {
    color: #FFFFFF;
    font-family: var(--darts-font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.darts-kit-card__sub {
    color: #E0E0E0;
    font-family: var(--darts-font-body);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

/* ── 4. Feature List with Custom Orange Checkmarks ── */
.darts-kit-card__features {
    list-style: none !important;
    padding: 0;
    margin: 0 0 30px 0;
}

.darts-kit-card__features li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #FFFFFF;
    font-family: var(--darts-font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.darts-kit-card__features li:last-child {
    margin-bottom: 0;
}

/* Custom embedded SVG for the exact orange checkmark from the mockup */
.darts-kit-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23ec3d08'/%3E%3Cpath d='M7 12L10.5 15.5L18 8' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ── 5. Pricing Block ── */
.darts-kit-card__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* Separator line */
    padding-top: 25px;
}

.darts-kit-card__price-old {
    color: #777777;
    font-family: var(--darts-font-heading);
    font-size: 24px;
    font-weight: 500;
    text-decoration: line-through;
}

.darts-kit-card__price-new {
    color: #ed4137;
    font-family: var(--darts-font-heading);
    font-size: 36px;
    font-weight: 600;
}

/* ── 6. CTA Button Override (White Background) ── */
.darts-kit-card .darts-kit-card__cta {
    display: block;
    width: 100%;
    background-color: #FFFFFF !important;
    color: #000000 !important;
    text-align: center;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.darts-kit-card .darts-kit-card__cta:hover {
    background-color: #E5E5E5 !important;
    transform: translateY(-2px);
}

/* ── 7. Guarantee Footer ── */
.darts-kit-card__guarantee {
    color: #B0B0B0;
    font-family: var(--darts-font-body);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
/* Hide the default WordPress generated lock emoji */
.darts-kit-card__guarantee img.emoji {
    display: none !important;
}

/* Inject the exact shield checkmark icon from the mockup via CSS */
.darts-kit-card__guarantee::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B0B0B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -1px; /* Optical alignment with the text */
}


/* ==========================================================================
   Responsive Adjustments for the Card
   ========================================================================== */
@media (max-width: 1024px) {
    .darts-hero__right {
        margin-left: 0; /* Centers it if flex-direction changes */
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .darts-kit-card {
        padding: 30px 20px;
    }
    
    .darts-kit-card__title {
        font-size: 24px;
    }
    
    .darts-kit-card__price-new {
        font-size: 32px;
    }
}