/* ============================================================
   Printfetti — Theme Color Overrides
   ============================================================
   Palette:
     --brand-primary:    #FF2D9A  (neon pink — main brand)
     --brand-secondary:  #00B2FF  (electric blue — secondary accent)
     --brand-warm:       #FF8A00  (orange — warm supporting accent)
     --brand-accent:     #FFD400  (bright yellow — highlight accent)
     --brand-danger:     #F54336  (red — destructive/error)

   Mapped to Frintem theme tokens:
     orange  (#ff4328) → brand-primary   #FF2D9A
     blue    (#1a1e5d) → brand-dark      #0B0B0B
     yellow  (#fec931) → brand-accent    #FFD400
     purple  (#5f43c5) → brand-primary   #FF2D9A
     pink    (#e6498f) → brand-warm      #FF8A00
     lightblue (#209ffa) → brand-secondary #00B2FF
     past/teal (#20ad96) → brand-secondary #00B2FF
   ============================================================ */

:root {
    --brand-primary: #FF2D9A;
    --brand-secondary: #00B2FF;
    --brand-warm: #FF8A00;
    --brand-accent: #FFD400;
    --brand-danger: #F54336;
    --brand-dark: #0B0B0B;
    --brand-dark-alt: #111111;
    --brand-light: #F5F5F5;
}


/* ===========================================
   1. Background utility classes
   =========================================== */

.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.bg_default_purple {
    background-color: var(--brand-primary) !important;
}

.bg_default_pink {
    background-color: var(--brand-warm) !important;
}

.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.bg_default_past {
    background-color: var(--brand-secondary) !important;
}

.bg_default_blue {
    background-color: var(--brand-dark) !important;
}


/* ===========================================
   2. Text selection
   =========================================== */

::-moz-selection {
    background-color: var(--brand-primary);
}

::selection {
    background-color: var(--brand-primary);
}


/* ===========================================
   3. Links & text accents
   =========================================== */

a:hover,
a:focus {
    color: var(--brand-primary);
}

.text_btn:hover,
.text_btn:hover span {
    color: var(--brand-primary);
}

.border_left_yellow {
    border-left-color: var(--brand-secondary) !important;
}

.border_left_orange {
    border-left-color: var(--brand-primary) !important;
}


/* ===========================================
   4. Buttons (.custom_btn)
   =========================================== */

/* Global rounded pill shape for all buttons */
.custom_btn {
    border-radius: 50px;
}

.custom_btn:before {
    border-radius: 50px;
}

.custom_btn span {
    border-radius: 50%;
}

/* Orange button → brand primary */
.custom_btn.bg_default_orange {
    background-color: var(--brand-primary);
}

.custom_btn.bg_default_orange:before {
    background: var(--brand-secondary);
}

.custom_btn.bg_default_orange:hover {
    color: var(--brand-dark);
}

/* Yellow button → brand secondary */
.custom_btn.bg_default_yellow {
    background-color: var(--brand-secondary);
    color: var(--brand-dark);
}

.custom_btn.bg_default_yellow:before {
    background: var(--brand-primary);
}

.custom_btn.bg_default_yellow:hover {
    color: #fff;
}

/* Purple button → brand primary */
.custom_btn.bg_default_purple {
    background-color: var(--brand-primary);
}

/* Blue button → brand dark */
.custom_btn.bg_default_blue {
    background-color: var(--brand-dark);
}

.custom_btn.bg_default_blue:before {
    background: var(--brand-primary);
}

/* White/outlined button icon bg */
.custom_btn.bg_white span {
    background-color: var(--brand-dark);
}

.custom_btn.bg_white:before {
    background: var(--brand-primary);
}

/* Border buttons */
.custom_btn.btn_border span.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.custom_btn.btn_border span.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.custom_btn.btn_border span.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}


/* ===========================================
   5. Floating chat widget
   =========================================== */

/* Hide the old back-to-top button */
#backtotop {
    display: none !important;
}

/* Widget wrapper */
#chat_widget {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    font-family: inherit;
}

/* Toggle button */
#chat_btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 45, 154, 0.4);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    right: 0;
}

#chat_btn:hover {
    background: var(--brand-secondary);
    box-shadow: 0 4px 20px rgba(0, 178, 255, 0.4);
    transform: scale(1.1);
}

/* Panel */
#chat_panel {
    display: flex;
    flex-direction: column;
    width: 340px;
    max-height: 460px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    position: absolute;
    bottom: 72px;
    right: 0;
}

#chat_header {
    background: var(--brand-primary);
    color: #fff;
    padding: 16px 18px;
    border-radius: 16px 16px 0 0;
}

/* Rep info in header */
#chat_rep {
    display: flex;
    align-items: center;
    gap: 12px;
}

#chat_avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

#chat_rep_info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#chat_rep_info strong {
    font-size: 14px;
    letter-spacing: 0.3px;
}

#chat_status {
    font-size: 11px;
    opacity: 0.85;
}

#chat_status i {
    font-size: 7px;
    color: #4ade80;
    margin-right: 4px;
}

/* Message area */
#chat_body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 14px;
    min-height: 100px;
    max-height: 180px;
    background: var(--brand-light);
}

.chat_bubble {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    max-width: 92%;
}

.chat_bubble_avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.chat_bubble_text {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
    word-wrap: break-word;
}

.chat_bubble--bot {
    margin-right: auto;
}

.chat_bubble--bot .chat_bubble_text {
    background: #fff;
    color: var(--brand-dark);
    border: 1px solid #e6e6e6;
    border-bottom-left-radius: 4px;
}

.chat_bubble--user {
    flex-direction: row-reverse;
    margin-left: auto;
}

.chat_bubble--user .chat_bubble_avatar {
    background: var(--brand-secondary);
}

.chat_bubble--user .chat_bubble_text {
    background: var(--brand-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Form */
#chat_form_wrap {
    border-top: 1px solid #eee;
    background: #fff;
}

#chat_form {
    background: #fff;
}

#chat_fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#chat_fields input,
#chat_fields textarea {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    resize: none;
    font-family: inherit;
    background: transparent;
}

#chat_fields input:focus,
#chat_fields textarea:focus {
    background: #fafafa;
}

#chat_fields textarea {
    border-bottom: none;
}

#chat_send {
    width: 100%;
    border: none;
    background: var(--brand-primary);
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

#chat_send:hover {
    background: var(--brand-secondary);
}

#chat_send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sent confirmation */
#chat_sent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

#chat_sent_icon {
    font-size: 48px;
    color: #4ade80;
    margin-bottom: 12px;
}

#chat_sent p {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--brand-dark);
}

#chat_new_msg {
    margin-top: 16px;
    border: none;
    background: transparent;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

#chat_new_msg:hover {
    color: var(--brand-secondary);
}

/* Responsive */
@media (max-width: 480px) {
    #chat_panel {
        width: calc(100vw - 50px);
        right: 0;
    }
}


/* ===========================================
   6. Preloader
   =========================================== */

.preloader .spinner {
    border-top-color: var(--brand-primary);
}


/* ===========================================
   7. Owl carousel dots
   =========================================== */

.owl-theme .owl-dots .owl-dot span {
    background: var(--brand-primary);
}

.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--brand-primary);
}


/* ===========================================
   8. Pagination
   =========================================== */

.pagination_nav li:hover a,
.pagination_nav li.active a {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
}


/* ===========================================
   9. Header — default style
   =========================================== */

/* Top bar */
.header_section .header_top.bg_default_blue {
    background-color: var(--brand-dark) !important;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #FF2D9A, #FF8A00, #FFD400, #00B2FF) 1;
}

/* Non-home pages: show the "stuck" header appearance immediately */
.header_section.header_solid {
    position: fixed;
    background-color: var(--brand-dark);
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

.header_section.header_solid .header_top {
    display: none;
}

.header_section.header_solid .header_bottom {
    background-color: var(--brand-dark);
}

.header_section.header_solid .header_bottom .brand_logo {
    position: absolute;
    bottom: 12px;
    left: 15px;
    transform: translateY(50%);
}

.header_section.header_solid .header_bottom .brand_logo>a>img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Search btn accent */
.header_section .action_btn.bg_default_purple {
    background-color: var(--brand-primary) !important;
}

/* Nav links — inactive = white, active = blue */
.header_section .main_menu>ul>li>a,
.header_default .main_menu>ul>li>a,
.main_menu>ul>li>a {
    color: #ffffff !important;
}

.header_section .main_menu>ul>li:hover>a,
.header_section .main_menu>ul>li.active>a,
.header_default .main_menu>ul>li:hover>a,
.header_default .main_menu>ul>li.active>a,
.main_menu>ul>li:hover>a,
.main_menu>ul>li.active>a {
    color: #00B2FF !important;
}

/* Submenu active/hover */
.main_menu .has_child .submenu li:hover>a,
.main_menu .has_child .submenu li.active>a {
    color: var(--brand-primary);
}

/* Primary header nav (fallback) */
.primary_header .main_menu>ul>li:hover>a,
.primary_header .main_menu>ul>li.active>a {
    background-color: var(--brand-primary);
}

.primary_header .search_btn:hover,
.primary_header .search_btn.active {
    background-color: var(--brand-primary);
}

/* Mobile menu button hover */
.primary_header .mobilemenu_btns_group button:hover,
.primary_header .mobilemenu_btns_group button.active {
    color: var(--brand-primary);
}

/* Secondary header nav */
.secondary_header .main_menu>ul>li:hover>a,
.secondary_header .main_menu>ul>li.active>a {
    color: var(--brand-primary);
}

/* Header contact info icon */
.header_contact_info li i {
    color: var(--brand-secondary);
}

/* Header CTA button — gradient glow matching hero */
/* Nav login / account icon */
.nav_login_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 28px;
    line-height: 1;
    padding: 0 12px;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.nav_login_icon i {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(79, 31, 143, 0.5);
}

.nav_login_icon:hover {
    color: #00B2FF !important;
    transform: scale(1.06);
}

.nav_login_icon:hover i {
    -webkit-text-stroke: 1.5px #4f1f8f;
    text-shadow: 0 0 10px rgba(79, 31, 143, 0.7);
}

.header_section .custom_btn.bg_default_yellow {
    background: linear-gradient(135deg, #FF2D9A, #FF8A00) !important;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    box-shadow:
        0 0 14px rgba(255, 45, 154, 0.35),
        0 0 35px rgba(255, 138, 0, 0.15);
    transition: all 0.3s ease;
    animation: heroBtnPulse 3s ease-in-out infinite;
}

.header_section .custom_btn.bg_default_yellow:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 22px rgba(255, 45, 154, 0.55),
        0 0 50px rgba(255, 138, 0, 0.3);
    color: #fff;
}

.header_section .custom_btn.bg_default_yellow:before {
    background: linear-gradient(135deg, #FF8A00, #FFD400) !important;
}

/* Header arrow span — light blue bg + white thick arrow */
.header_section .custom_btn.bg_default_yellow span {
    background-color: var(--brand-secondary) !important;
    color: #fff;
}

.header_section .custom_btn.bg_default_yellow span i {
    color: #fff;
    font-weight: 900;
    -webkit-text-stroke: 1px #fff;
}


/* ===========================================
   10. Mobile sidebar menu
   =========================================== */

.sidebar_mobile_menu {
    background-color: var(--brand-dark) !important;
}

.sidebar_mobile_menu .mobile_menu_list>ul>li:hover>a,
.sidebar_mobile_menu .mobile_menu_list>ul>li.active>a {
    color: var(--brand-primary);
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu>li:hover>a,
.sidebar_mobile_menu .mobile_menu_list .dropdown-menu>li.active>a {
    color: var(--brand-primary);
}

.sidebar_mobile_menu .close_btn:hover {
    color: var(--brand-primary);
}


/* ===========================================
   11. Banner / Hero
   =========================================== */

.home_two_banner {
    background-image: linear-gradient(0deg, #0B0B0B 0%, #1a0a2e 50%, #2d1054 99%) !important;
    background-color: var(--brand-dark);
    min-height: auto !important;
    padding-top: 180px !important;
    padding-bottom: 80px !important;
    overflow: hidden;
}

/* Hero layout — vertically center text and image */
.home_two_banner .banner_contant {
    padding-top: 20px;
}

.home_two_banner .item_title {
    font-size: 72px !important;
    line-height: 1.05 !important;
    margin-bottom: 30px !important;
    letter-spacing: -1px !important;
}

.home_two_banner .sub_title {
    margin-bottom: 20px !important;
    font-size: 18px !important;
}

.home_two_banner .decoration_text {
    top: 50% !important;
    left: -200px !important;
    font-size: 160px !important;
    transform: rotate(-45deg) translateY(-50%) !important;
    opacity: 0.4;
}

/* Hero image container — scale down circle to fit content */
.home_two_banner .banner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 520px !important;
    height: 520px !important;
    margin: 0 auto !important;
    float: none !important;
}

.home_two_banner .banner_image:after {
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle at 35% 35%,
            rgba(87, 52, 201, 0.9) 0%,
            rgba(45, 16, 84, 0.95) 60%,
            rgba(11, 11, 11, 0.9) 100%) !important;
    box-shadow:
        0 0 60px rgba(255, 45, 154, 0.15),
        0 0 120px rgba(87, 52, 201, 0.2),
        inset 0 0 80px rgba(0, 178, 255, 0.08);
}

.home_two_banner .banner_image picture,
.home_two_banner .banner_image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.home_two_banner .banner_image img {
    max-height: 340px;
    object-fit: contain;
    object-position: center;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(255, 45, 154, 0.3)) drop-shadow(0 5px 20px rgba(0, 178, 255, 0.2));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* Outer ring — gradient ring */
.home_two_banner .banner_image:before {
    border: none !important;
    background: conic-gradient(from 0deg,
            var(--brand-primary),
            var(--brand-warm),
            var(--brand-accent),
            var(--brand-secondary),
            var(--brand-primary)) !important;
    -webkit-mask:
        radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px));
    mask:
        radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px));
    animation: spin 8s linear infinite !important;
    opacity: 0.7;
}

/* Hero CTA buttons spacing */
.home_two_banner .banner_contant .custom_btn {
    margin-top: 10px;
}

.banner_contant .sub_title {
    color: var(--brand-secondary);
}

/* Hero "Start Your Order" button — pop treatment */
.home_two_banner .custom_btn.bg_default_orange {
    background: linear-gradient(135deg, #FF2D9A, #FF8A00);
    padding: 14px 44px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    box-shadow:
        0 0 20px rgba(255, 45, 154, 0.4),
        0 0 50px rgba(255, 138, 0, 0.2);
    transition: all 0.3s ease;
    animation: heroBtnPulse 3s ease-in-out infinite;
}

.home_two_banner .custom_btn.bg_default_orange:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 30px rgba(255, 45, 154, 0.6),
        0 0 70px rgba(255, 138, 0, 0.35);
    color: #fff;
}

.home_two_banner .custom_btn.bg_default_orange:before {
    background: linear-gradient(135deg, #FF8A00, #FFD400);
}

.home_two_banner .custom_btn.bg_default_orange span {
    background: rgba(255, 255, 255, 0.95);
}

/* Hero "Get a Quote" button — electric blue with glow */
.home_two_banner .hero_btn_quote {
    background: linear-gradient(135deg, #00B2FF, #00D4FF);
    padding: 14px 44px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    border: none;
    box-shadow:
        0 0 20px rgba(0, 178, 255, 0.4),
        0 0 50px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    animation: heroQuotePulse 3s ease-in-out infinite;
}

.home_two_banner .hero_btn_quote:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 30px rgba(0, 178, 255, 0.6),
        0 0 70px rgba(0, 212, 255, 0.35);
    color: #fff;
}

.home_two_banner .hero_btn_quote:before {
    background: linear-gradient(135deg, #00D4FF, #00B2FF);
}

.home_two_banner .hero_btn_quote span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.home_two_banner .hero_btn_quote span i {
    color: #fff;
}

@media (max-width: 991px) {
    .home_two_banner {
        padding-top: 140px !important;
        padding-bottom: 56px !important;
    }

    .home_two_banner .banner_image {
        width: min(100%, 380px) !important;
        height: auto !important;
        aspect-ratio: 1;
        margin: 28px auto 0 !important;
    }

    .home_two_banner .banner_image:after {
        width: 82% !important;
        height: 82% !important;
    }

    .home_two_banner .banner_image img {
        max-height: min(58vw, 260px);
    }

    .home_two_banner .item_title {
        font-size: 48px !important;
    }

    .home_two_banner .decoration_text {
        display: none;
    }
}

@media (max-width: 575px) {
    .home_two_banner {
        padding-top: 118px !important;
        padding-bottom: 44px !important;
    }

    .home_two_banner .banner_image {
        width: min(100%, 300px) !important;
        margin-top: 20px !important;
    }

    .home_two_banner .banner_image img {
        max-height: min(52vw, 200px);
    }

    .home_two_banner .item_title {
        font-size: 36px !important;
        margin-bottom: 18px !important;
    }

    .home_two_banner .sub_title {
        font-size: 15px !important;
    }

    .home_two_banner .banner_contant p {
        font-size: 16px !important;
    }

    .home_two_banner .banner_contant .custom_btn {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-top: 12px !important;
        text-align: center;
    }
}

@keyframes heroQuotePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 178, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 28px rgba(0, 178, 255, 0.55), 0 0 65px rgba(0, 212, 255, 0.3);
    }
}

@keyframes heroBtnPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 45, 154, 0.4), 0 0 50px rgba(255, 138, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 28px rgba(255, 45, 154, 0.55), 0 0 65px rgba(255, 138, 0, 0.3);
    }
}

.banner_contant .decoration_text {
    color: rgba(0, 178, 255, 0.06);
}


/* ===========================================
   12. Section titles
   =========================================== */

.section_title .small_title {
    color: var(--brand-primary);
}

.section_title .biggest_title {
    color: rgba(255, 45, 154, 0.04);
}


/* ===========================================
   13. Feature cards
   =========================================== */

/* --- Soft pink section background --- */
.feature_section {
    background-color: #fdf0f4 !important;
    overflow: hidden;
}

.feature_section .section_title .small_title {
    color: var(--brand-primary);
}

/* --- Paint splatter wrapper --- */
.feature_image_wrap {
    position: relative;
    z-index: 1;
}

/* --- Splatter images base --- */
.splatter {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Orange splatter — top-right */
.splatter_orange {
    width: 180px;
    height: auto;
    top: -20px;
    right: 0;
}

/* Cyan splatter — bottom-left */
.splatter_cyan {
    width: 160px;
    height: auto;
    bottom: -30px;
    left: 0;
}

/* Dark ink drops — full spread behind image */
.splatter_dark {
    width: 100%;
    height: auto;
    top: -20px;
    left: 0;
    opacity: 0.55;
}

/* Remove the original solid border frame */
.feature_section .feature_image_1:before {
    display: none;
}

/* Ensure the image sits above splatters */
.feature_image_wrap .feature_image_1 {
    position: relative;
    z-index: 2;
}

/* --- Icon sizing for SVG icons --- */
.feature_primary .item_icon.item_icon_img {
    background: none !important;
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    line-height: normal;
    float: none !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
}

.feature_primary .item_icon.item_icon_img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* --- Wider cards + bolder, bigger text --- */
.feature_section .feature_primary {
    max-width: none;
}

.feature_section .feature_primary .item_content {
    display: block;
}

.feature_section .feature_primary .item_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #222222;
    white-space: nowrap;
}

.feature_section .feature_primary p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 16px;
}

.feature_section .feature_primary .text_btn span {
    font-size: 13px;
    font-weight: 600;
}

/* --- Old color classes (keep for fallback) --- */
.feature_primary .item_icon.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.feature_primary .item_icon.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.feature_primary .item_icon.bg_default_blue {
    background-color: var(--brand-dark) !important;
}

.feature_primary .item_icon.bg_default_pink {
    background-color: var(--brand-warm) !important;
}

.feature_primary .text_btn:hover {
    color: var(--brand-primary);
}

.feature_card .item_content .item_type {
    color: var(--brand-primary);
}


/* ===========================================
   14. Service cards
   =========================================== */

.service_boxed.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.service_boxed.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.service_boxed.bg_default_blue {
    background-color: var(--brand-dark) !important;
}

.service_boxed.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.service_boxed.bg_default_past {
    background-color: var(--brand-warm) !important;
}


/* ===========================================
   15. CTA sections
   =========================================== */

.cta_section.bg_default_blue {
    background-color: var(--brand-dark) !important;
}

/* More generous vertical spacing */
.cta_section.sec_ptb_130 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Contact Us button — blue style instead of dark/black border */
.cta_section .custom_btn.btn_border.border_white {
    border-color: var(--brand-secondary) !important;
    color: var(--brand-secondary) !important;
    margin-left: 20px;
}

.cta_section .custom_btn.btn_border.border_white:before {
    background: var(--brand-secondary) !important;
}

.cta_section .custom_btn.btn_border.border_white:hover {
    color: #ffffff !important;
}

.cta_section .custom_btn.btn_border.border_white span {
    background-color: var(--brand-secondary) !important;
    color: #ffffff !important;
}

.cta_section .custom_btn.btn_border.border_white span.bg_white {
    background-color: var(--brand-secondary) !important;
}

/* Button spacing */
.cta_section .custom_btn+.custom_btn {
    margin-top: 15px;
}


/* ===========================================
   16. Fun facts / counters
   =========================================== */

.funfact_item .item_icon span.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.funfact_item .item_icon span.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.funfact_item .item_icon span.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.funfact_item .item_icon span.bg_default_purple {
    background-color: var(--brand-primary) !important;
}


/* ===========================================
   17. Portfolio / gallery plus overlay
   =========================================== */

.portfolio_fullimage .plus_effect:before,
.portfolio_fullimage .plus_effect:after {
    background-color: var(--brand-primary);
}

/* Gallery CTA button spacing */
.portfolio_section .text-center.mt_50 {
    margin-top: 80px;
}


/* ===========================================
   18. Testimonials
   =========================================== */

.testimonial_primary .quote_icon {
    color: var(--brand-secondary);
}

/* Initials avatar for testimonials */
.hero_thumbnail.hero_initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-warm));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}


/* ===========================================
   19. Pricing plans
   =========================================== */

.pricing_plan .item_header .sub_title {
    color: var(--brand-primary);
}

.pricing_plan .pricing_text {
    color: var(--brand-primary);
}

.pricing_plan .custom_btn {
    background-color: var(--brand-primary);
}


/* ===========================================
   20. Blog cards
   =========================================== */

.blog_grid_1 .item_title a:hover,
.blog_fullimage .item_title a:hover,
.blog_fullimage_2 .item_title a:hover,
.blog_standard .item_title a:hover,
.small_blog .item_title a:hover {
    color: var(--brand-primary);
}

.post_meta li a:hover {
    color: var(--brand-primary);
}


/* ===========================================
   21. Footer
   =========================================== */

.footer_section.bg_default_blue {
    background-color: #060606 !important;
}

.footer_video_area video {
    filter: contrast(1.4) brightness(0.95);
}

.footer_section .footer_widget_title {
    color: #fff;
}

.footer_section .footer_widget_title:before {
    background-color: var(--brand-primary);
}

.footer_useful_links li a:hover {
    color: var(--brand-secondary);
}

.footer_contact_info .item_icon.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.footer_contact_info .item_icon.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.footer_contact_info .item_icon.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.footer_newsletter_boxed {
    border-color: rgba(0, 178, 255, 0.15);
}

.footer_bottom_boxed {
    position: relative;
    border: none !important;
    border-radius: 16px;
    padding: 25px 50px;
    background: linear-gradient(0deg, #0B0B0B 0%, #1a0a2e 50%, #2d1054 99%) !important;
    overflow: hidden;
    z-index: 0;
}

.footer_bottom_boxed::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(90deg,
            var(--brand-primary) 0%,
            var(--brand-warm) 25%,
            var(--brand-accent) 50%,
            var(--brand-secondary) 75%,
            var(--brand-primary) 100%);
    background-size: 200% 100%;
    animation: shimmer-border 20s ease-in-out infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer-border {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.text-white .footer_bottom_boxed {
    background-color: transparent !important;
}

.footer_contact_form .submit_btn {
    background-color: var(--brand-primary);
}

.footer_contact_form .form_item input:focus {
    border-color: var(--brand-primary);
}

.footer_hotline i {
    color: var(--brand-secondary);
}


/* ===========================================
   22. Contact info icons
   =========================================== */

.contact_info_item .item_icon.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.contact_info_item .item_icon.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.contact_info_item .item_icon.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}


/* ===========================================
   23. Forms — focus & accents
   =========================================== */

.form_item input:focus,
.form_item textarea:focus,
.form_item select:focus {
    border-color: var(--brand-primary);
}

.form_item input[type="submit"],
.form_item button[type="submit"] {
    background-color: var(--brand-primary);
}

.search_body .form_item button {
    color: var(--brand-primary);
}

/* Nice-select focus */
.nice-select:focus,
.nice-select.open {
    border-color: var(--brand-primary);
}


/* ===========================================
   24. Alerts
   =========================================== */

/* Restore Font Awesome on <i> tags — style.css sets all i { font-family: Hind } */
i.fal {
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}

i.far, i.fas, i.fab, i.fad,
i[class^="fa-"], i[class*=" fa-"] {
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal;
    line-height: 1;
}

.alert--notice {
    background: #eaf8ff;
    border: 1px solid var(--brand-secondary);
    color: #145a7a;
}

.alert--error {
    background: #fef2f2;
    border: 1px solid var(--brand-danger);
    color: #7f1d1d;
}

.auth-flash {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auth-flash i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 18px;
}

.auth-flash--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-flash--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.site-flash {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
}

.site-flash--notice {
    background: #eaf8ff;
    border: 1px solid var(--brand-secondary);
    color: #145a7a;
}

.site-flash--alert {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}


/* ===========================================
   25. Breadcrumb
   =========================================== */

.breadcrumb_section {
    background-color: var(--brand-dark);
    min-height: 255px;
    padding: 155px 0 55px;
}

.breadcrumb_section .breadcrumb_nav {
    display: none;
}

.breadcrumb_section .breadcrumb>li a:hover {
    color: var(--brand-secondary);
}

.breadcrumb_section .breadcrumb>li.active {
    color: var(--brand-secondary);
}

/* Video breadcrumb background */
.breadcrumb_section.breadcrumb_video {
    position: relative;
    overflow: hidden;
}

.breadcrumb_video_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.breadcrumb_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.5);
    z-index: 1;
}

.breadcrumb_section.breadcrumb_video .container {
    position: relative;
    z-index: 2;
}


/* ===========================================
   26. Circle check info list
   =========================================== */

.circle_check_info_list li:before {
    color: var(--brand-primary);
}


/* ===========================================
   27. FAQ accordion
   =========================================== */

.description_tabnav a:hover,
.description_tabnav a.active {
    color: var(--brand-primary);
}

.description_tabnav a:hover:before,
.description_tabnav a.active:before {
    background: var(--brand-primary);
}


/* ===========================================
   28. Brand section
   =========================================== */

.brand_section .brand_logo.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}


/* ===========================================
   29. Circle social links
   =========================================== */

.social_title {
    color: #fce44c !important;
}

.circle_social_links a {
    border: solid 1px #fce44c;
}

.footer_bottom_boxed .circle_social_links a {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid #fce44c;
    color: #fff !important;
    transition: all 0.3s ease;
}

.footer_bottom_boxed .circle_social_links .bg_facebook:hover {
    background-color: #1877F2 !important;
    border-color: #1877F2;
}

.footer_bottom_boxed .circle_social_links .bg_twitter:hover {
    background-color: #1DA1F2 !important;
    border-color: #1DA1F2;
}

.footer_bottom_boxed .circle_social_links .bg_youtube:hover {
    background-color: #FF0000 !important;
    border-color: #FF0000;
}

.footer_bottom_boxed .circle_social_links .bg_linkedin:hover {
    background-color: #0A66C2 !important;
    border-color: #0A66C2;
}

.footer_bottom_boxed .circle_social_links .bg_instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: #dc2743;
}

.circle_social_links a:hover {
    background-color: var(--brand-primary) !important;
}


/* ===========================================
   30. Whoweare / Who We Are section
   =========================================== */

.whoweare_section.bg_default_yellow {
    background-color: var(--brand-dark) !important;
}

.whoweare_section .whoweare_content {
    padding: 60px 40px 60px 60px;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: 100%;
}

.whoweare_section .whoweare_content .section_title {
    margin-bottom: 30px;
}

.whoweare_section .whoweare_content .section_title .small_title {
    color: var(--brand-accent);
}

.whoweare_section .whoweare_content .section_title .big_title {
    color: #fff;
    -webkit-text-stroke: 0;
    text-stroke: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 42px;
    line-height: 1.15;
}

.whoweare_section .whoweare_content .section_title .biggest_title {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    text-stroke: 1px rgba(255, 255, 255, 0.06);
}

.whoweare_section .whoweare_about_content {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whoweare_section .whoweare_about_content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
}


/* ===========================================
   31. Cart sidebar (if used)
   =========================================== */

.cart_sidebar .close_btn:hover {
    color: var(--brand-primary);
}


/* ===========================================
   32. Orange shape decoration
   =========================================== */

.orange_shape {
    background-color: var(--brand-primary);
}


/* ===========================================
   33. Logo — 50% overlay below navbar
   =========================================== */

/* Let the logo overflow below the header bar when stuck */
.header_section .header_bottom {
    overflow: visible;
    position: relative;
    z-index: 1000;
}

/* Default state: logo sits normally in the nav */
.header_section .header_bottom .brand_logo {
    position: relative;
    z-index: 1001;
}

.header_section .header_bottom .brand_logo>a {
    display: block;
}

.header_section .header_bottom .brand_logo>a>img {
    height: 130px;
    width: auto;
    max-height: none;
    transition: height 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* Stuck state: logo overlaps 50% below the navbar */
.header_section.stuck .header_bottom .brand_logo {
    position: absolute;
    bottom: 12px;
    left: 15px;
    transform: translateY(50%);
}

.header_section.stuck .header_bottom .brand_logo>a>img {
    /* height: 90px; */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Ensure content below the header isn't clipped by the overflowing logo */
.header_section+main,
.header_section~main {
    position: relative;
    z-index: 1;
}


/* ===========================================
   31. Bag Design Editor
   =========================================== */

.bag_editor_section {
    background: #111;
    color: #f5f5f5;
    padding: 40px 0 60px;
    min-height: 100vh;
}

.bag_editor_section .section_title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 4px;
}

.bag_editor_section .section_subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* --- Controls sidebar --- */
.editor_sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.editor_control_group {
    margin-bottom: 18px;
}

.editor_label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.editor_select {
    width: 100%;
    background: #1a1a1a;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
    appearance: auto;
}

.editor_select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

/* Color swatches */
.color_swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color_swatches .swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.color_swatches .swatch:hover {
    transform: scale(1.12);
}

.color_swatches .swatch.active {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 2px var(--brand-accent), inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Holographic swatch */
.color_swatches .swatch[data-color="holographic"] {
    background: linear-gradient(135deg, #f0c0ff, #c0f0ff, #fffba0, #f0c0ff) !important;
}

/* Upload area */
.upload_area {
    border: 2px dashed rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.upload_area:hover,
.upload_area.dragover {
    border-color: var(--brand-primary);
    background: rgba(255, 45, 154, 0.05);
}

.upload_area i {
    font-size: 1.6rem;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

.upload_area p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    word-break: break-all;
}

/* Scale slider */
.editor_range {
    width: 100%;
    accent-color: var(--brand-primary);
}

/* Text input */
.editor_text_input {
    width: 100%;
    background: #1a1a1a;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.editor_text_input:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.editor_text_input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Small buttons */
.editor_btn_sm {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.15s;
}

.editor_btn_sm:hover {
    opacity: 0.85;
}

.editor_btn_sm.btn_center {
    background: var(--brand-secondary);
    color: #fff;
}

.editor_btn_sm.btn_remove {
    background: var(--brand-danger);
    color: #fff;
}

.editor_btn_sm.btn_add_text {
    background: var(--brand-accent);
    color: #111;
}

.editor_divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

/* --- Canvas area --- */
.editor_canvas_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.canvas_container_wrap {
    position: relative;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    display: inline-block;
}

.canvas_hint {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

/* Fabric.js canvas overrides */
.canvas_container_wrap .canvas-container {
    border-radius: 4px;
}

/* --- Summary sidebar --- */
.editor_summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.editor_summary h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
    color: #fff;
}

.summary_item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.summary_item strong {
    color: #fff;
    font-weight: 600;
}

.quantity_select {
    width: 100%;
    background: #1a1a1a;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
    margin-top: 8px;
}

.quantity_select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.editor_summary .custom_btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.download_btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #eee;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    margin-top: 10px;
}

.download_btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .bag_editor_section {
        padding: 24px 0 40px;
    }

    .editor_canvas_wrap {
        min-height: 400px;
        margin: 24px 0;
    }

    .editor_sidebar,
    .editor_summary {
        margin-bottom: 20px;
    }
}