:root {
    --red:       #CE2029;
    --btn-bg-light: #093137;
    --btn-bg-dark:  #a3151c;
    --yellow:      #F5C542;
    --yellow-light:#3a311a;
    --yellow-dark: #D4A82A;
    --orange:      #F28C38;
    --orange-light: #3a2a1a;
    --orange-dark: #CC6F1E;
    --green:       #2A9D6E;
    --green-light: #1a2a22;
    --green-dark:  #1C6E4A;
    --dark:       #0a0a0a;
    --dark2:      #11181c;
    --mid:        #2a3a44;
    --muted:      #8a9aa8;
    --border:     #2a2a2a;
    --border-light: #222;
    --bg:         #0a0a0a;
    --white:      #ffffff;
    --text:       #eef2f5;
    --text-soft:  #b0c0ce;
    --btn-bg:     #21d5ed;
    --btn-color:  #000000;
    --btn-border: #0fa7bb;
    --sidebar-bg: #1a2223;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}
/* ==========================================
   FULL-WIDTH PAGE HEADER (DARK THEME)
   ========================================== */

.page-header {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Darker gradient overlay for better text readability */
.page-header {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.8)
    ), url('your-image-url.jpg'); /* fallback – inline style will override */
}

/* Ensure the heading stands out */
.page-header .display-3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* Breadcrumb container */
.page-header .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

/* Breadcrumb items – base colour */
.page-header .breadcrumb-item {
    color: #e0e6e8;
}

/* Breadcrumb links – use cyan accent */
.page-header .breadcrumb-item a {
    color: #00cedb;
    text-decoration: none;
    transition: color 0.2s;
}

.page-header .breadcrumb-item a:hover {
    color: #00b4c0;
    text-decoration: underline;
}

/* Separator between breadcrumb items */
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #8a9ba0;
    content: "/";
}

/* Active page (current) */
.page-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}
/* ==========================================
   DARK THEME FOR OFFCANVAS FILTER SIDEBAR
   ========================================== */

/* Offcanvas container */
.offcanvas {
    background-color: #0f1a1c;
    border-right: 1px solid #2a3b3f;
}

/* Offcanvas header */
.offcanvas-header {
    background-color: #1a2223;
    border-bottom: 1px solid #2a3b3f;
}

.offcanvas-title {
    color: #ffffff;
    font-weight: 600;
}

/* Close button (white X) */
.offcanvas .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}
.offcanvas .btn-close:hover {
    opacity: 1;
}

/* Offcanvas body */
.offcanvas-body {
    background-color: #0f1a1c;
    color: #e0e6e8;
}

/* ----- Categories section (inside offcanvas) ----- */
.offcanvas-body .shop-categorii {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
    margin-bottom: 1.5rem;
}

.offcanvas-body .shop-categorii .card-header {
    background-color: #1a2223;
    color: #e0e6e8;
    border-bottom-color: #2a3b3f;
    padding: 0.75rem 1rem;
}

.offcanvas-body .shop-categorii .list-group {
    background-color: transparent;
}

.offcanvas-body .shop-categorii .list-group-item {
    background-color: #1a2223;
    color: #8a9ba0;
    border-color: #2a3b3f;
    transition: all 0.2s ease;
}

/* Hover state – yellow text */
.offcanvas-body .shop-categorii .list-group-item-action:hover {
    background-color: #253538;
    color: #ffc107 !important;
}

/* Active category – cyan background, black text */
.offcanvas-body .shop-categorii .list-group-item.active {
    background-color: #00cedb !important;
    border-color: #00cedb !important;
    color: #0a0a0a !important;
    font-weight: 600;
}

/* ----- Filters section (inside offcanvas) ----- */
.offcanvas-body .shop-filtre {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
}

.offcanvas-body .shop-filtre .card-header {
    background-color: #1a2223;
    color: #e0e6e8;
    border-bottom-color: #2a3b3f;
    font-weight: 600;
}

.offcanvas-body .shop-filtre .card-body {
    background-color: #0f1a1c;
}

/* Filter group labels */
.offcanvas-body .shop-filtre .card-body strong {
    color: #00cedb; /* cyan accent for filter group titles */
    font-weight: 600;
}

/* Filter links (each filter row) */
.offcanvas-body .shop-filter-link {
    color: #e0e6e8;
    transition: color 0.2s;
    padding: 0.25rem 0;
}

.offcanvas-body .shop-filter-link:hover {
    color: #ffc107 !important; /* yellow on hover */
}

/* Checkbox inside filter link (disabled, just visual) */
.offcanvas-body .shop-filter-link input[type="checkbox"] {
    width: 16px;
    height: 16px;
    background-color: #1a2223;
    border: 1px solid #4a5b60;
    border-radius: 3px;
    cursor: default;
    pointer-events: none;
}

.offcanvas-body .shop-filter-link input[type="checkbox"]:checked {
    background-color: #00cedb;
    border-color: #00cedb;
}

/* Optional: if you have active filter state (selected filter) */
.offcanvas-body .shop-filter-link.active-filter {
    color: #00cedb;
    font-weight: 500;
}
/* ==========================================
   RESET FILTERS BUTTON – SOLID YELLOW
   Override for btn-outline-warning
   ========================================== */

.btn-outline-warning.btn-reset-filters {
    background-color: #ffc107 !important;
    color: #0a0a0a !important;
    border: 1px solid #ffc107 !important;

    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-warning.btn-reset-filters:hover {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #0a0a0a !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.btn-outline-warning.btn-reset-filters:active {
    transform: translateY(0px);
}

/* Optional: focus state for accessibility */
.btn-outline-warning.btn-reset-filters:focus {
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
    outline: none;
}

/* Optional: ensure the container spacing doesn't break full width */
.page-header .container {
    position: relative;
    z-index: 2;
}
/* ==========================================
   DARK THEME FOR CART TABLE
   ========================================== */

/* Container if needed */
.table-responsive {
    background-color: transparent;
}

/* Base table styles – dark mode */
.table {
    --bs-table-bg: #0f1a1c;
    --bs-table-striped-bg: #132226;
    --bs-table-hover-bg: #1a2a2e;
    --bs-table-border-color: #2a3b3f;
    color: #e0e6e8;
    border-color: #2a3b3f;
}

/* Table header */
.table thead th {
    background-color: #1a2223;
    color: #00cedb; /* cyan for column titles */
    border-bottom-color: #2a3b3f;
    font-weight: 600;
    padding: 0.75rem;
}

/* Table body rows */
.table tbody tr {
    border-bottom-color: #2a3b3f;
}

.table tbody td {
    vertical-align: middle;
    padding: 0.75rem;
    background-color: #0f1a1c;
    border-color: #2a3b3f;
}

/* Table hover effect */
.table tbody tr:hover td {
    background-color: #1a2a2e;
}

/* Quantity input inside cart */
.table input.form-control.form-control-sm {
    background-color: #1a2223;
    border: 1px solid #2a3b3f;
    color: #ffffff;
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
    width: 70px;
    text-align: center;
}

.table input.form-control.form-control-sm:focus {
    border-color: #00cedb;
    box-shadow: 0 0 8px rgba(0, 206, 211, 0.4);
    outline: none;
}

/* Remove button (trash) */
.btn-outline-danger {
    background-color: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #ffffff;
    transform: scale(1.05);
}

/* Better mobile responsiveness */
@media (max-width: 768px) {
    .table thead {
        display: none;
    }
    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }
    .table tr {
        margin-bottom: 1rem;
        border: 1px solid #2a3b3f;
        border-radius: 8px;
        background-color: #0f1a1c;
    }
    .table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        border-bottom: 1px solid #2a3b3f;
    }
    .table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #00cedb;
        text-align: left;
        margin-right: 1rem;
    }
}

/* ==========================================
   DARK THEME FOR CART MODAL
   ========================================== */

/* Modal backdrop (if not already styled) */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal dialog container */
.modal-dialog {
    color: #e0e6e8;
}

/* Modal content – dark background */
.modal-content {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
    border-radius: 16px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6);
}

/* Modal header */
.modal-header {
    background-color: #1a2223;
    border-bottom: 1px solid #2a3b3f;
    border-radius: 16px 16px 0 0;
    padding: 1rem 1.5rem;
}

.modal-header .modal-title {
    color: #ffffff;
    font-weight: 600;
}

/* Close button (white X) */
.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}
.modal-header .btn-close:hover {
    opacity: 1;
}

/* Modal body */
.modal-body {
    background-color: #0f1a1c;
    color: #e0e6e8;
    padding: 1.5rem;
}

/* Table inside modal – reuse dark table styles */
.modal-body .table {
    --bs-table-bg: #0f1a1c;
    --bs-table-striped-bg: #132226;
    --bs-table-hover-bg: #1a2a2e;
    --bs-table-border-color: #2a3b3f;
    color: #e0e6e8;
    border-color: #2a3b3f;
    margin-bottom: 0;
}

.modal-body .table thead th {
    background-color: #1a2223;
    color: #00cedb;
    border-bottom-color: #2a3b3f;
    font-weight: 600;
}

.modal-body .table tbody td {
    background-color: #0f1a1c;
    border-color: #2a3b3f;
    vertical-align: middle;
}

.modal-body .table tbody tr:hover td {
    background-color: #1a2a2e;
}

/* Quantity input in modal */
.modal-body .table input.form-control-sm {
    background-color: #1a2223;
    border: 1px solid #2a3b3f;
    color: #ffffff;
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
    text-align: center;
}

.modal-body .table input.form-control-sm:focus {
    border-color: #00cedb;
    box-shadow: 0 0 8px rgba(0, 206, 211, 0.4);
    outline: none;
}

/* Remove button (trash) */
.modal-body .btn-outline-danger {
    background-color: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 20px;
    transition: all 0.2s;
}

.modal-body .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #ffffff;
    transform: scale(1.05);
}

/* Total row – border top and text */
.modal-body .border-top {
    border-color: #2a3b3f !important;
}

/*.modal-body .text-end strong {*/
/*    color: #00cedb;*/
/*    font-size: 1.1rem;*/
/*}*/
/* ==========================================
   CART MODAL – TABLE TEXT STYLES
   ========================================== */
/* ==========================================
   DELETE BUTTON – ALWAYS RED
   ========================================== */

.btn.btn-delete {
    background-color: #dc3545 !important;
    color: #ffffff !important;
    border: 1px solid #dc3545 !important;
    font-weight: 600;
    transition: all 0.15s ease;

}

/* Hover state – slightly darker red */
.btn.btn-delete:hover {
    background-color: #bb2d3b !important;
    border-color: #bb2d3b !important;
    color: #ffffff !important;
}

/* Focus state – red + subtle glow */
.btn.btn-delete:focus {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.4);
    outline: none;
}

/* Active state (when clicked) – even darker red */
.btn.btn-delete:active {
    background-color: #a71d2a !important;
    border-color: #a71d2a !important;
    color: #ffffff !important;
    transform: translateY(1px);
}

/* Disabled state – red but slightly faded */
.btn.btn-delete:disabled,
.btn.btn-delete.disabled {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
    opacity: 0.6;
    cursor: not-allowed;
}
 /* All table cells text color */
.modal-body .table td,
.modal-body .table th {
    color: #e0e6e8;  /* light grey for readability */
}

/* Product name column – can be slightly brighter */
.modal-body .table td:first-child {
    color: #ffffff;
    font-weight: 500;
}

/* Price & subtotal columns – use cyan accent */
/* ==========================================
   CART MODAL – TABLE TEXT CORRECTED
   ========================================== */

/* Price & Subtotal columns – cyan accent */
.modal-body .table td:nth-child(2),
.modal-body .table td:nth-child(4) {
    color: #00cedb;
    font-weight: 500;
}

/* Quantity input value (text inside the input) */
.modal-body .table input.form-control-sm {
    color: #ffffff;
    background-color: #1a2223;
}

/* Total row text – yellow (fixing !important placement) */
.modal-body td.text-price-table {
    color: #ffc107 !important;   /* correct syntax: !important after value */
}

/* Alternative: if total is inside a <strong> or <span> */
.modal-body .text-end strong,
.modal-body .total-amount {
    color: #ffffff !important;
    font-size: 1.2rem;
}

/* ==========================================
   MODAL – PLACEHOLDER TEXT COLOR
   ========================================== */

/* All input placeholders inside modals */
.modal input::placeholder,
.modal textarea::placeholder,
.modal .form-control::placeholder {
    color: #8a9ba0 !important;  /* soft gray, visible on dark */
    opacity: 1;                 /* override browser default opacity */
    font-weight: 400;
    font-size: 13px;
}

/* For older browsers (Internet Explorer) */
.modal input:-ms-input-placeholder,
.modal textarea:-ms-input-placeholder {
    color: #8a9ba0 !important;
}

/* Edge / legacy WebKit */
.modal input::-ms-input-placeholder,
.modal textarea::-ms-input-placeholder {
    color: #8a9ba0 !important;
}
/* Modal footer */
.modal-footer {
    background-color: #0f1a1c;
    border-top: 1px solid #2a3b3f;
    border-radius: 0 0 16px 16px;
    padding: 1rem 1.5rem;
}

/* Secondary close button (Închide) */
.modal-footer .btn-outline-secondary {
    background-color: transparent;
    border: 1px solid #3a4f54;
    color: #cbd5e1;
    border-radius: 30px;
    padding: 0.375rem 1rem;
    transition: all 0.2s;
}
/* ==========================================
   DARK THEME FOR PRODUCT TABS CONTENT
   ========================================== */

/* Tab content container (border + background) */
.tab-content {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
    border-top: none !important;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
}

/* Description text */
.product-description {
    color: #e0e6e8;
    line-height: 1.6;
}
.product-description a {
    color: #00cedb;
}
.product-description strong,
.product-description b {
    color: #ffffff;
}

/* Variations table wrapper */
.table-responsive {
    border-radius: 8px;
}

/* Variations table – base dark */
.table.table-hover.align-middle {
    --bs-table-bg: #0f1a1c;
    --bs-table-striped-bg: #132226;
    --bs-table-hover-bg: #1a2a2e;
    --bs-table-border-color: #2a3b3f;
    color: #e0e6e8;
    margin-bottom: 0;
}

/* Override Bootstrap's .table-light header to dark */
.table thead.table-light {
    --bs-table-bg: #1a2223;
    --bs-table-color: #ffffff;
}
.table thead.table-light th {
    background-color: #1a2223;
    color: #00cedb;
    border-bottom-color: #2a3b3f;
    font-weight: 600;
}

/* Table cells */
.table tbody td {
    background-color: #0f1a1c;
    border-color: #2a3b3f;
    vertical-align: middle;
}

/* Hover row effect */
.table-hover tbody tr:hover td {
    background-color: #1a2a2e;
}

/* Active row (selected variation) */
.table tbody tr.table-active,
.table tbody tr.table-active td {
    background-color: #1a2a2e !important;
    color: #ffffff;
}

/* Text muted inside table */
.table .text-muted {
    color: #8a9ba0 !important;
}

/* Variation buttons – "Alege" */
.btn-outline-danger {
    background-color: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 30px;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #ffffff;
}
/* If you prefer cyan instead of red for "Alege", uncomment below:
.btn-outline-danger {
    border-color: #00cedb;
    color: #00cedb;
}
.btn-outline-danger:hover {
    background-color: #00cedb;
    color: #0a0a0a;
}
*/

/* Shipping tab */
#tab-shipping .row {
    margin-top: 0;
}
#tab-shipping .d-flex {
    background-color: #1a2223;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #2a3b3f;
}
#tab-shipping .bi,
#tab-shipping i {
    color: #00cedb !important;
}
#tab-shipping h6 {
    color: #ffffff;
}
#tab-shipping .text-muted {
    color: #b0c4cc !important;
}

/* Additional: ensure spacing and readability */
.tab-pane .table-responsive {
    margin-top: 0;
}
.modal-footer .btn-outline-secondary:hover {
    background-color: #2a3b3f;
    border-color: #00cedb;
    color: #ffffff;
}

/* Primary checkout button – SOLID YELLOW (btn-warning) */
.modal-footer .btn-warning {
    background-color: #ffc107 !important;
    border: 1px solid #ffc107 !important;
    color: #0a0a0a !important;
    border-radius: 30px;
    padding: 0.375rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.modal-footer .btn-warning:hover {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #0a0a0a !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.modal-footer .btn-warning:active {
    transform: translateY(0px);
}

/* Responsive adjustments for small screens */
@media (max-width: 576px) {
    .modal-body {
        padding: 1rem;
    }
    .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    .modal-footer .btn {
        width: 100%;
    }
}
/* For mobile, adjust padding if needed */
@media (max-width: 768px) {
    .page-header .display-3 {
        font-size: 2rem;
    }
    .page-header {
        min-height: 250px;
    }
}
/* ─── TOP BAR ─── */
.topbar {
    background: #050a0e;
    color: rgba(255,255,255,0.6);
    font-size: 12.5px;
    padding: 9px 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border);
}
.topbar a { color: rgba(255,255,255,0.6); text-decoration: none; }
.topbar a:hover { color: #FC3; }
.topbar .sep { margin: 0 14px; opacity: 0.3; }

/* ─── NAVBAR ─── */
.lmn-nav {
    background: #1a2223;
    border-bottom: 2px solid #035758;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1045;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}.btn-nav-contact, .btn-hero-red{
     box-shadow: 0 0 15px rgba(0, 206, 211, 0.4);
 }
.lmn-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    text-decoration: none;
}
.brand-logo { height: 72px; width: auto; }
.brand-text .name {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.brand-text .name span { color: var(--btn-bg); }
.brand-text .tagline {
    font-size: 10.5px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
}
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #ccc !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #FC3 !important; background: #1a1a1a; }
.navbar-nav .nav-link.btn-nav-contact,
.navbar-nav .nav-link.btn-nav-contact:hover { color: #000 !important; }
.btn-nav-contact {
    background: var(--btn-bg);
    color: var(--btn-color) !important;
    border: 1px solid var(--btn-border);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px !important;
    border-radius: 4px !important;
    transition: all 0.15s;
}
.btn-nav-contact:hover { background: var(--btn-border) !important; color: #000 !important; }

.btn-product-info {
    text-transform: uppercase;
    background: var(--btn-bg);
    color: var(--btn-color) !important;
    border: 1px solid var(--btn-border);
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 22px !important;
    border-radius: 6px !important;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}
.btn-product-info:hover {
    background: var(--btn-border) !important;
    color: #000 !important;
}

/* Butoane generice */
.btn, .btn-primary, .btn-cta, .btn-hero-red, .btn-addtocart-1 {
    background-color: var(--btn-bg) !important;
    color: var(--btn-color) !important;
    border: 1px solid var(--btn-border) !important;
    font-weight: 600;
    transition: all 0.15s;
}
.btn:hover, .btn-primary:hover, .btn-cta:hover, .btn-hero-red:hover, .btn-addtocart-1:hover {
    background-color: var(--btn-border) !important;
    color: #000 !important;
    border-color: var(--btn-bg) !important;
}

/* Pagination */
.pagination .page-link {
    background-color: #1a1a1a;
    border-color: var(--border);
    color: var(--text);
}
.pagination .page-link:hover {
    background-color: #2a2a2a;
    border-color: var(--border);
    color: #FC3;
}
.pagination .page-item.active .page-link {
    background-color: var(--btn-bg);
    border-color: var(--btn-border);
    color: #000;
}
.pagination .page-item.disabled .page-link {
    background-color: #111;
    color: #666;
    border-color: var(--border);
}

/* ─── SUBMENU (desktop) ─── */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -2px;
    margin-left: 0;
}
.dropdown-submenu > a.dropdown-toggle::after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    vertical-align: middle;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    padding: 0.5rem 0.6rem;
    background: var(--btn-bg);
    border: 1px solid var(--btn-border);
    color: #000;
}
footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
}
footer .btn.btn-social:hover {
    margin-right: 5px;
    color: #FC3;
    border: 1px solid #FC3;
}

.navbar-nav .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #ccc !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    background-color: #1a1a1a;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #2a2a2a;
    color: #FC3 !important;
}

/* Overlay container */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.position-relative:hover .portfolio-overlay { opacity: 1; }

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--btn-bg);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}
#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--btn-bg);
    border-color: var(--btn-bg);
}
.portfolio-img {
    position: relative;
}
.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}
.portfolio-img::before { left: 50%; }
.portfolio-img::after { right: 50%; }
.portfolio-item:hover .portfolio-img::before,
.portfolio-item:hover .portfolio-img::after {
    width: 51%;
}
.portfolio-item:hover .portfolio-img::before { left: 0; }
.portfolio-item:hover .portfolio-img::after { right: 0; }
.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}
.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}
.shop-product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.shop-filtre a { color: var(--text-soft); }
.shop-categorii .list-group-item.active {
    z-index: 2;
    color: #21d5ed;
    background-color: var(--sidebar-bg);
    border-color: var(--btn-border);
}

/* Sidebar */
.sidbar-listing, .sidbar-listing .card, .shop-categorii .list-group-item {
    background: var(--sidebar-bg) !important;
    color: #fff !important;
}
.asidelink {
    color: #ffffff;
    padding: 2px 7px;
    border-radius: .2rem;
}
.asidelink:hover {
    color: #FC3 !important;
    background: transparent;
}
.asidelink.selected {
    color: #21d5ed !important;
}

/* Card produs */
.store-listing .card, .product-card {
    background: var(--sidebar-bg) !important;
    color: #fff !important;
    border: 1px solid var(--border);
}
.store-listing .card .card-title,
.store-listing .card .card-text,
.product-card h6,
.product-card p,
.product-card strong {
    color: #fff;
}
.card {
    background: var(--sidebar-bg);
    color: #fff;
}.text-muted {
     --bs-text-opacity: 1;
     color: var(--text-soft) !important;
 }

/*
---------------------------------------------
contact us
---------------------------------------------
*/
/* Dark Theme Styles for the Contact Form Section */
#contactarea {
    background-color: #0b1315; /* Deep dark background for the entire section */
}

/* Style the content column (the form side) */
#contactarea .col-lg-6:last-child {
    background-color: #0f1a1c; /* Slightly lighter dark for the form container */
}

/* Headings & labels dark theme adjustments */
#contactarea .section-label,
#contactarea h1,
#contactarea p,
#contactarea .form-check-label {
    color: #ffffff; /* White text for all labels and headings */
}

#contactarea .section-label {
    opacity: 0.8; /* Softer for the label */
    letter-spacing: 1px;
}

#contactarea h1 {
    font-weight: 600;
}

/* All text inputs, email, phone, textarea, and select */
#contactarea .form-control,
#contactarea .form-select {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #1a2223;
    outline: none;
    border: none;
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    padding: 0px 15px;
    margin-bottom: 30px;
}

/* Textarea specific styling */
#contactarea textarea.form-control {
    height: auto; /* Override fixed height for textarea */
    padding: 12px 15px;
    resize: vertical;
}

/* Select dropdown arrow custom (consistent background) */
#contactarea .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    appearance: none;
    -webkit-appearance: none;
}

/* Option styling for select (limited but works in most browsers) */
#contactarea .form-select option {
    background-color: #1a2223;
    color: #ffffff;
}

/* Placeholder text color */
#contactarea .form-control::placeholder,
#contactarea .form-select::placeholder {
    color: #8a9ba0;
    font-weight: 400;
    font-size: 12px;
}

/* Focus state for all input-like fields */
#contactarea .form-control:focus,
#contactarea .form-select:focus,
#contactarea textarea.form-control:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 206, 211, 0.4); /* Red-tinted focus ring to match button */
    background-color: #1e292b;
}

/* Checkbox styling for dark theme */
#contactarea .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    background-color: #1a2223;
    border: 1px solid #4a5b60;
    border-radius: 4px;
    cursor: pointer;
}

#contactarea .form-check-input:checked {
    background-color: #dc3545; /* Red accent to match button */
    border-color: #dc3545;
}

#contactarea .form-check-input:focus {
    box-shadow: 0 0 15px rgba(0, 206, 211, 0.4);
    border-color: var(--btn-bg);
}
.shadow {
    box-shadow: 0 0 15px rgba(0, 206, 211, 0.4) !important;
}
.dropdown-menu {
    background-color: #1a1a1a;
}
.modal-content {
    background-color: #1a1a1a;
}
/* Checkbox label */
#contactarea .form-check-label {
    color: #e0e6e8;
    font-size: 13px;
    margin-left: 8px;
}
/* ==========================================
   DARK THEME FOR MODALS & FORM FIELDS (CYAN ACCENT)
   ========================================== */

/* ----- GLOBAL DARK MODAL STYLES ----- */
.modal-content {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
    border-radius: 16px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6);
}

.modal-header,
.modal-footer {
    border-color: #2a3b3f;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-title,
.modal-body,
.modal-footer button {
    color: #e0e6e8;
}

.modal-body .form-label,
.modal-body label {
    color: #cbd5e1;
}

/* Modal dark input fields (consistent with form) */
.modal input.form-control,
.modal select.form-select,
.modal textarea.form-control,
.modal .form-control {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #1a2223;
    outline: none;
    border: 1px solid #2a3b3f;
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    padding: 0px 15px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.modal textarea.form-control {
    height: auto;
    padding: 12px 15px;
}

/* Focus state with CYAN accent (instead of red) */
.modal input.form-control:focus,
.modal select.form-select:focus,
.modal textarea.form-control:focus,
#contactarea .form-control:focus,
#contactarea .form-select:focus,
#contactarea textarea.form-control:focus {
    border-color: #00cedb;
    box-shadow: 0 0 15px rgba(0, 206, 211, 0.4);
    background-color: #1e292b;
}

/* Select dropdown arrow in modals (white) */
.modal .form-select,
#contactarea .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    appearance: none;
}

/* Checkbox styling with CYAN accent */
.modal .form-check-input,
#contactarea .form-check-input {
    background-color: #1a2223;
    border: 1px solid #4a5b60;
    border-radius: 4px;
    cursor: pointer;
}

.modal .form-check-input:checked,
#contactarea .form-check-input:checked {
    background-color: #00cedb;
    border-color: #00cedb;
}

.modal .form-check-input:focus,
#contactarea .form-check-input:focus {
    box-shadow: 0 0 0 2px rgba(0, 206, 211, 0.3);
    border-color: #00cedb;
}

.modal .form-check-label {
    color: #e0e6e8;
}

/* Modal buttons – optional cyan */
.modal .btn-primary {
    background-color: #00cedb;
    border-color: #00cedb;
    color: #0a1a1c;
    font-weight: 600;
}

.modal .btn-primary:hover {
    background-color: #00b4c0;
    border-color: #00b4c0;
}

.modal .btn-secondary {
    background-color: #2a3b3f;
    border-color: #3a4f54;
    color: #e0e6e8;
}

/* ----- EXISTING FORM SECTION (UPDATED WITH CYAN) ----- */
#contactarea {
    background-color: #0b1315;
}

#contactarea .col-lg-6:last-child {
    background-color: #0f1a1c;
}

#contactarea .section-label,
#contactarea h1,
#contactarea p,
#contactarea .form-check-label {
    color: #ffffff;
}

/* Form input fields – same base + cyan focus */
#contactarea .form-control,
#contactarea .form-select {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #1a2223;
    outline: none;
    border: 1px solid #2a3b3f;
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    padding: 0px 15px;
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

#contactarea textarea.form-control {
    height: auto;
    padding: 12px 15px;
}

/* Focus glow with cyan (as requested) */
#contactarea .form-control:focus,
#contactarea .form-select:focus {
    border-color: #00cedb;
    box-shadow: 0 0 15px rgba(0, 206, 211, 0.4);
    background-color: #1e292b;
}

/* Placeholder color */
#contactarea .form-control::placeholder,
#contactarea .form-select::placeholder {
    color: #8a9ba0;
    font-weight: 400;
    font-size: 12px;
}

/* Replace button red with CYAN */
#contactarea .btn-hero-red {
    display: inline-block;
    background-color: #00cedb;
    color: #0a1a1c;
    border: none;
    border-radius: 30px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#contactarea .btn-hero-red:hover {
    background-color: #00b4c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 206, 211, 0.3);
}

/* Feedback message */
#message-feedback-free {
    color: #8dd0d5;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    #contactarea .col-lg-6:last-child {
        background-color: #0f1a1c;
    }
    #contactarea .btn-hero-red {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   DARK THEME FOR SHOP TOOLBAR SECTION
   ========================================== */

/* Container background adjustment if needed */
.d-flex.justify-content-between.align-items-center.mb-4.flex-wrap.gap-2 {
    background-color: transparent; /* keep consistent with parent */
    color: #e0e6e8;
}

/* Text muted / product count */
.text-muted.small {
    color: #8a9ba0 !important;
}

.text-muted .text-dark {
    color: #00cedb !important; /* cyan accent for the number (7) */
    font-weight: 600;
}

/* Search form input */
#searchForm .form-control.form-control-sm {
    background-color: #1a2223;
    border: 1px solid #2a3b3f;
    color: #ffffff;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 13px;
    height: 32px;
    transition: all 0.2s ease;
}

#searchForm .form-control.form-control-sm:focus {
    border-color: #00cedb;
    box-shadow: 0 0 8px rgba(0, 206, 211, 0.4);
    background-color: #1e292b;
    outline: none;
}

#searchForm .form-control.form-control-sm::placeholder {
    color: #8a9ba0;
    font-size: 12px;
}

/* Search button */
#searchForm .btn-outline-secondary {
    background-color: transparent;
    border: 1px solid #3a4f54;
    color: #cbd5e1;
    border-radius: 30px;
    font-size: 13px;
    padding: 0.25rem 1rem;
    transition: all 0.2s;
}

#searchForm .btn-outline-secondary:hover {
    background-color: #2a3b3f;
    border-color: #00cedb;
    color: #ffffff;
}

/* Sort dropdown (form-select) */
.d-flex.gap-2.align-items-center .form-select.w-auto {
    background-color: #1a2223;
    border: 1px solid #2a3b3f;
    color: #ffffff;
    border-radius: 30px;
    font-size: 13px;
    padding: 0.25rem 2rem 0.25rem 1rem;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    appearance: none;
    cursor: pointer;
}

.d-flex.gap-2.align-items-center .form-select.w-auto:focus {
    border-color: #00cedb;
    box-shadow: 0 0 8px rgba(0, 206, 211, 0.4);
    outline: none;
}

.d-flex.gap-2.align-items-center .form-select.w-auto option {
    background-color: #1a2223;
    color: #ffffff;
}

/* Optional: style any additional buttons (like cart button) if present */
.d-flex.gap-2.align-items-center .btn {
    background-color: #1a2223;
    border-color: #2a3b3f;
    color: #e0e6e8;
    border-radius: 30px;
    font-size: 13px;
}

.d-flex.gap-2.align-items-center .btn:hover {
    background-color: #2a3b3f;
    border-color: #00cedb;
    color: #ffffff;
}

/* ==========================================
   DARK THEME FOR BREADCRUMB NAVIGATION
   ========================================== */

/* Override the light background and border */
nav[aria-label="breadcrumb"] {
    background-color: #0f1a1c !important; /* Dark background matching modal/form container */
    border-bottom: 1px solid #2a3b3f !important;
}

/* Breadcrumb container inside */
nav[aria-label="breadcrumb"] .container {
    background-color: transparent;
}

/* Breadcrumb list */
.breadcrumb {
    background-color: transparent;
}

/* Breadcrumb items – default text color */
.breadcrumb-item {
    color: #8a9ba0;
}

/* Breadcrumb links */
.breadcrumb-item a {
    color: #00cedb; /* Cyan accent */
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #00b4c0;
    text-decoration: underline;
}

/* Separator between breadcrumb items (usually / or >) */
.breadcrumb-item + .breadcrumb-item::before {
    color: #5a767c;
    content: "/"; /* or your default separator */
}

/* Active / current page (non-link) */
.breadcrumb-item.active {
    color: #e0e6e8;
}

/* ----- CART BUTTON DARK STYLES ----- */
.btn.btn-sm.btn-outline-primary {
    background-color: transparent;
    border-color: #00cedb;
    color: #00cedb;

    padding: 0.25rem 1rem;
    font-size: 13px;
    transition: all 0.2s ease;
}

.btn.btn-sm.btn-outline-primary:hover {
    background-color: #00cedb;
    border-color: #00cedb;
    color: #0a1a1c;
}

.product-section a{

    color:var(--white);
}

/* ==========================================
   DARK THEME FOR SHOP CATEGORIES SIDEBAR
   Hover text: yellow
   ========================================== */

/* Container card */
.shop-categorii {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
}

/* Card header */
.shop-categorii .card-header {
    background-color: #1a2223;
    color: #e0e6e8;
    border-bottom-color: #2a3b3f;
    font-weight: 600;
}

/* List group flush container */
.shop-categorii .list-group-flush {
    background-color: transparent;
}

/* Base list group item */
.shop-categorii .list-group-item {
    background-color: #1a2223;
    color: #8a9ba0;
    border-color: #2a3b3f;
    transition: all 0.2s ease;
}

/* Hover state – text turns YELLOW */
.shop-categorii .list-group-item-action:hover {
    background-color: #253538;
    color: #ffc107 !important; /* yellow text */
}

/* Active category (e.g., "Toate categoriile") – cyan background, black text */
.shop-categorii .list-group-item.active {
    background-color: #00cedb !important;
    border-color: #00cedb !important;
    color: #0a0a0a !important;
    font-weight: 600;
}

/* Optional: if you also want yellow text on focus (accessibility) */
.shop-categorii .list-group-item-action:focus {
    color: #ffc107 !important;
}

/* Keep active item’s hover text consistent (black) */
.shop-categorii .list-group-item.active:hover {
    color: #0a0a0a !important;
}
/* ==========================================
   DARK THEME FOR PRODUCT TABS (nav-tabs)
   Active tab: cyan background + black text
   ========================================== */

/* Tabs container background (if needed) */
.nav-tabs {
    border-bottom-color: #2a3b3f;
    background-color: transparent;
}

/* All tab buttons/links base style */
.nav-tabs .nav-link {
    background-color: #1a2223;
    color: #8a9ba0;
    border: 1px solid #2a3b3f;
    border-bottom: none;
    margin-right: 4px;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}

/* Hover state for inactive tabs */
.nav-tabs .nav-link:hover:not(.active) {
    background-color: #253538;
    color: #e0e6e8;
    border-color: #3a4f54;
}

/* ACTIVE TAB – cyan background, black text */
.nav-tabs .nav-link.active {
    background-color: #00cedb !important;
    color: #0a0a0a !important;
    border-color: #00cedb !important;
    border-bottom-color: #00cedb !important;
    font-weight: 600;
}

/* Disabled tab (if any) */
.nav-tabs .nav-link.disabled {
    background-color: #111a1c;
    color: #5a767c;
}

/* Tab content pane (the container where tab content appears) */
.tab-content {
    background-color: #0f1a1c;
    border: 1px solid #2a3b3f;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
    margin-top: -1px;
}

/* Content inside tab pane – text color */
.tab-content p,
.tab-content li,
.tab-content div:not(.no-dark) {
    color: #e0e6e8;
}

.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4 {
    color: #ffffff;
}

/* Optional: if you use borders on active tab to match design */
.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link.active:hover {
    background-color: #00cedb;
    color: #0a0a0a;
}
/* Cart badge (the number) – use cyan instead of danger (red) */
/* ==========================================
   DARK THEME FOR .BORDER CLASS
   ========================================== */

/* Override the global border CSS variable for dark mode */
:root {
    --bs-border-color: #2a3b3f;
    --bs-border-width: 1px;
    --bs-border-style: solid;
}

/* Direct override for .border class and its directional variants */
.border,
.border-top,
.border-bottom,
.border-start,
.border-end {
    border-color: #2a3b3f !important;
}

/* Optional: override border-* utility colors with darker counterparts
   (e.g., border-primary, border-secondary, etc.) */
.border-primary {
    border-color: #00cedb !important;
}
.border-secondary {
    border-color: #3a4f54 !important;
}
.border-success {
    border-color: #198754 !important;
}
.border-danger {
    border-color: #dc3545 !important;
}
.border-warning {
    border-color: #ffc107 !important;
}
.border-info {
    border-color: #0dcaf0 !important;
}
.border-light {
    border-color: #3a4f54 !important;
}
.border-dark {
    border-color: #0a1a1c !important;
}
.border-white {
    border-color: #e0e6e8 !important;
}

/* If you want to keep the default border width/radius styling */
.border {
    border-width: var(--bs-border-width);
    border-style: var(--bs-border-style);
}
.related-product-card a{
    color: #e0e6e8;
}


/* Extra: adjust the icon inside button if needed */
.btn-sm .fas.fa-shopping-cart {
    margin-right: 4px;
    font-size: 12px;
}

/* ==========================================
   DARK THEME FOR LIST GROUP ITEMS
   UPDATED: active state = black text on cyan
   ========================================== */
/* ── Display price ── */
.price-display-large {
    color:var(--bs-yellow); /* cyan instead of red */
    font-weight: 700;
    font-size: 1.8rem;
}
.price-display-small {
    color:var(--bs-yellow); /* cyan instead of red */
    font-weight: 700;
    font-size: 1.1rem;
}
/* Base list group item – dark mode */
.list-group-item {
    --bs-list-group-bg: #1a2223;
    --bs-list-group-color: #e0e6e8;
    --bs-list-group-border-color: #2a3b3f;
    --bs-list-group-action-hover-bg: #253538;
    --bs-list-group-action-hover-color: #ffffff;

    background-color: var(--bs-list-group-bg);
    color: var(--bs-list-group-color);
    border-color: var(--bs-list-group-border-color);
    transition: all 0.2s ease;
}
.price-display{

    color:var(--yellow);
}
/* Hover state for actionable list group items */
.list-group-item-action:hover,
.list-group-item-action:focus {
    background-color: var(--bs-list-group-action-hover-bg);
    color: var(--bs-list-group-action-hover-color);
}

/* ACTIVE state – button-like, black text on cyan */
.list-group-item.active {
    background-color: #00cedb !important;
    border-color: #00cedb !important;
    color: #0a0a0a !important; /* black/dark text */
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 206, 211, 0.3);
}

/* Optional: add a subtle pressed effect on click/active */
.list-group-item.active:active {
    transform: scale(0.99);
    box-shadow: none;
}

/* Disabled state */
.list-group-item.disabled,
.list-group-item:disabled {
    background-color: #111a1c;
    color: #5a767c;
    opacity: 0.6;
}

/* Text inside active item (headings, spans, etc.) inherits black */
.list-group-item.active h1,
.list-group-item.active h2,
.list-group-item.active h3,
.list-group-item.active h4,
.list-group-item.active h5,
.list-group-item.active h6,
.list-group-item.active p,
.list-group-item.active span,
.list-group-item.active small {
    color: #0a0a0a !important;
}
/* Red button styling (matching dark theme) */
#contactarea .btn-hero-red {
    display: inline-block;
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    cursor: pointer;
    width: auto;
    min-width: 160px;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#contactarea .btn-hero-red:hover {
    background-color: #b02a37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#contactarea .btn-hero-red:active {
    transform: translateY(1px);
}

/* Feedback message area */
#message-feedback-free {
    color: #f8d7da;
    font-size: 13px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Ensure the checkbox group spacing */
#contactarea .form-check {
    margin-bottom: 20px;
    padding-left: 1.8rem;
}

/* For any additional links or text within form */
#contactarea a {
    color: #dc3545;
}

/* Optional: Adjust the gap between rows to be consistent */
#contactarea .row.g-3 {
    --bs-gutter-y: 0rem;
}

/* Container adjustments for full-height consistency */
#contactarea .container.px-0,
#contactarea .row.g-0 {
    background-color: #0b1315;
}

/* Responsive touch: ensure padding works on mobile */
@media (max-width: 991px) {
    #contactarea .col-lg-6:last-child {
        background-color: #0f1a1c;
    }
    #contactarea .btn-hero-red {
        width: 100%;
        text-align: center;
    }
}

/* Optional: style the image container side to keep consistency, but not required for form dark mode */
#contactarea .imgage-container {
    background-color: #051013; /* fallback in case image missing */
}















/* Fix horizontal overflow */
@media (max-width: 575px) {
    .g-5, .gy-5 { --bs-gutter-y: 1.5rem; }
    .g-5, .gx-5 { --bs-gutter-x: 1rem; }
    .row {
        margin-left: calc(-0.5 * var(--bs-gutter-x, 0));
        margin-right: calc(-0.5 * var(--bs-gutter-x, 0));
    }
    [class*="col-"] {
        padding-left: calc(0.5 * var(--bs-gutter-x, 0));
        padding-right: calc(0.5 * var(--bs-gutter-x, 0));
    }
}
@media (max-width: 480px) {
    .brand-logo { height: 52px; }
    .brand-text .name { font-size: 16px; }
}
@media (max-width: 576px) {
    .hero-stats { gap: 10px !important; flex-wrap: wrap; }
    .hero-stats > div { flex: 1 1 40%; }
}
@media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-menu { display: block; }
}

/* ─── MOBILE NAV ─── */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #fff !important;
        text-align: right !important;
        padding: 0.5rem 1.25rem !important;
        border-bottom: 1px solid var(--border) !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: #FC3 !important;
        background: #1a1a1a !important;
    }
    .navbar-nav .dropdown-menu {
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #111 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    .navbar-nav .dropdown-item {
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: #ccc !important;
        text-align: right !important;
        padding: .75rem 1.25rem !important;
        background: #111 !important;
        border-bottom: 1px solid var(--border) !important;
        border-radius: 0 !important;
        display: block !important;
        width: 100% !important;
    }
    .navbar-nav .dropdown-item:last-child { border-bottom: none !important; }
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        color: #FC3 !important;
        background: #1f1f1f !important;
    }
    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        margin-left: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: #0a0a0a !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    .dropdown-submenu .dropdown-item {
        padding-right: 2.5rem !important;
        font-size: 1rem !important;
        color: #aaa !important;
        background: #0a0a0a !important;
        border-bottom: 1px solid #222 !important;
        text-align: right !important;
    }
    .dropdown-submenu .dropdown-item:hover {
        color: #FC3 !important;
        background: #1a1a1a !important;
    }
    .btn-nav-contact {
        display: block !important;
        width: calc(100% - 2.5rem) !important;
        margin: 1rem 1.25rem 0 !important;
        text-align: center !important;
        border-radius: 8px !important;
        padding: .85rem 1rem !important;
        font-size: 1rem !important;
    }
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.3rem;
    }
}

.shop-categorii .card-header{

    color: var(--btn-bg);
}
.shop-filtre .card-header{

    color: var(--btn-bg);
}
.cta-banner {
    width: 100%;
    min-height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url(../images/neon.png) center / cover no-repeat;
    color: #fff;
    padding: 60px 0;
}
/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(60deg, rgb(18 73 79 / 10%) 55% 35%, rgb(0 0 0) 70%, rgb(0 0 0 / 67%) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0 90px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(5 38 43);
    border: 1px solid #093137;
    color: #29d5eb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--btn-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(206,32,41,0.3);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(206,32,41,0.3); }
    50%      { box-shadow: 0 0 0 6px rgba(206,32,41,0.1); }
}
.hero h1 {
    text-transform: uppercase;
    font-size: clamp(38px, 5vw, 44px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 em { color: var(--btn-bg); font-style: normal; }
.hero-sub {
    font-size: 16px;
    color: rgb(255 255 255 / 79%);
    max-width: 481px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
    margin-left: auto;   /* pushes the block to the right */
    text-align: right;   /* optional, but ensures text inside is right-aligned */
}

.btn-hero-red {
    background: var(--btn-bg);
    color: var(--btn-color);
    border: 1px solid var(--btn-border);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
}
.btn-hero-red:hover { background: var(--btn-border); color: #000; }
.btn-hero-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.15s, color 0.15s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-addtocart-1 {
    background: var(--btn-bg) !important;
    color: var(--btn-color) !important;
    border: 1px solid var(--btn-border) !important;
    font-weight: 500;
    font-size: 17px;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
}
.btn-addtocart-1:hover {
    background: var(--btn-border) !important;
    color: #000 !important;
}
#productTabs .nav-link { color: var(--text-soft); }
#productTabs .nav-link.active { color: var(--btn-bg); }

.breadcrumb-item a { color: var(--btn-bg); }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stat-num span { color: var(--btn-bg); }
.hero-stat-label {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ─── SECTION SHARED ─── */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btn-bg);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-lead {
    font-size: 17px;
    color: var(--text-soft);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── ABOUT STRIP ─── */
.about-strip { background: #0a0a0a; padding: 88px 0; }
.about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--btn-bg);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}
.about-badge small { display: block; font-weight: 400; font-size: 11px; opacity: 0.85; }
.about-text { padding-left: 20px; }
.about-text p { color: var(--text-soft); font-size: 15.5px; line-height: 1.75; margin-bottom: 18px; }
.about-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ddd;
    font-weight: 500;
}
.about-check .chk {
    width: 22px; height: 22px; flex-shrink: 0;
    background: var(--btn-bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.about-check .chk svg { width: 12px; height: 12px; }

/* ─── SERVICES ─── */
.services-section { background: #0f0f0f; padding: 88px 0; }
.srv-card {
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.srv-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(-4px);
    border-color: var(--btn-bg);
}
.srv-icon {
    width: 52px; height: 52px;
    background: var(--btn-bg-light);
    color: var(--btn-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3em;
}
.redlink { color: var(--btn-bg); text-decoration: none; }
.srv-icon svg { width: 26px; height: 26px; }
.srv-num {
    font-size: 11px; font-weight: 700;
    color: var(--btn-bg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.srv-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}
.srv-desc { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; }

/* ─── WHY ─── */
.why-section { background: #0a0a0a; padding: 88px 0; }
.why-card {
    background: #141414;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    border: 1px solid var(--border);
}
.why-num {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--btn-bg);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 8px;
}
.why-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ─── COMPARISON TABLE ─── */
.compare-section { background: #0f0f0f; padding: 88px 0; }
.compare-col {
    background: #141414;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
}
.compare-col.featured { border-color: var(--btn-bg); box-shadow: 0 8px 32px rgba(206,32,41,0.2); }
.compare-head {
    padding: 24px 28px;
    background: #1a1a1a;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}
.compare-col.featured .compare-head { background: var(--btn-bg); border-bottom-color: var(--btn-bg-dark); }
.compare-head-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #2a2a2a;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.compare-col.featured .compare-head-icon { background: rgba(255,255,255,0.2); }
.compare-head-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2; }
.compare-col.featured .compare-head-title { color: #fff; }
.compare-head-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.compare-col.featured .compare-head-sub { color: rgba(255,255,255,0.7); }
.compare-body { padding: 24px 28px; }
.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}
.compare-item:last-child { border-bottom: none; }
.ci-dot {
    width: 20px; height: 20px; flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.ci-dot.green { background: #1a3a2a; }
.ci-dot.red-bg { background: var(--btn-bg-light); }
.ci-dot svg { width: 11px; height: 11px; }

/* ─── SECTORS ─── */
.sectors-section { background: #0a0a0a; padding: 88px 0; }
.sector-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sector-chip:hover { border-color: var(--btn-bg); box-shadow: 0 4px 16px rgba(206,32,41,0.15); }
.sector-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--btn-bg-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.sector-icon-wrap i { color: var(--btn-bg); }
.sector-icon-wrap svg { width: 22px; height: 22px; }
.sector-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.sector-sub { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

/* ─── CTA BAND ─── */
.cta-band { background: #050a0e; padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(206,32,41,0.2) 0%, transparent 70%);
}
.cta-band h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 0; max-width: 480px; }
.btn-cta-white {
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.15s;
}
.btn-cta-white:hover { opacity: 0.92; color: #000; }
.btn-cta-outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.15s;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ─── FOOTER ─── */
footer { background:   #1a2223; padding: 64px 0 0; color: rgba(255,255,255,0.65); font-size: 14.5px; border-top: 1px solid var(--border); }
.footer-logo-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo-name span { color: var(--btn-bg); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14.5px; transition: color 0.15s; }
.footer-links a:hover { color: #FC3; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 48px;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.status-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #52d68a; font-weight: 500; }
.status-pill::before {
    content: '';
    width: 6px; height: 6px;
    background: #52d68a;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(82,214,138,0.2);
}

/* ─── DIVIDER ─── */
.section-divider { width: 48px; height: 3px; background: var(--btn-bg); border-radius: 2px; margin: 16px 0 24px; }

/* ===== CORECȚIE PENTRU CAPTION VIZIBIL PE MOBIL ===== */
@media (max-width: 768px) {
    .video-overlay {
        align-items: flex-start;
        padding-top: 100px;
        box-sizing: border-box;
    }
    .main-banner .caption {
        padding-bottom: 20px;
    }
    .services {
        margin-top: 30px;
    }
}