:root {
    color-scheme: light;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(94, 202, 255, 0.35) 0%, rgba(242, 247, 255, 0.95) 50%, #f5f7ff 100%);
    color: #1d2840;
}
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(237,243,255,1) 0%, rgba(249,251,255,1) 100%);
    min-width: 280px;
}
a {
    color: inherit;
    text-decoration: none;
}
header {
    border-bottom: 1px solid rgba(94, 150, 255, 0.18);
    padding: 1.5rem 1.5rem 2.5rem;
    position: relative;
    overflow: visible;
    background: linear-gradient(140deg, rgba(255,255,255,0.92) 0%, rgba(231,241,255,0.95) 55%, rgba(210,236,255,0.85) 100%);
    z-index: 10000;
}
header .brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1140px;
    margin: 0 auto 2rem;
}
header .brand .identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
header .brand .identity img {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    object-fit: cover;
}
header .brand .identity .brand-name {
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1b2740;
}
@media (max-width: 960px) {
    header .brand .identity .brand-name {
        display: none;
    }
}
header .brand .contact {
    text-align: right;
}
header .brand .contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: rgba(94, 202, 255, 0.18);
    border: 1px solid rgba(94, 150, 255, 0.35);
    box-shadow: 0 10px 26px rgba(94, 150, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
header .brand .contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(94, 150, 255, 0.3);
}
header .brand .contact .contact-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1rem;
}
header .brand .contact .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1d2840;
    transition: color 0.2s ease;
    padding: 0;
    padding-left: 20px;
    border-right: 0;
}
header .brand .contact .phone-link:hover {
    color: #3664ff;
}
header .brand .contact .phone-number {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
}
header .brand .contact .phone-icon {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(190,214,255,0.75));
    border: 1px solid rgba(94, 150, 255, 0.35);
    box-shadow: 0 10px 20px rgba(142,176,255,0.25);
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
header .brand .contact .icon-link {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(190,214,255,0.75));
    border: 1px solid rgba(94, 150, 255, 0.35);
    box-shadow: 0 10px 20px rgba(142,176,255,0.25);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
header .brand .contact .icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(94, 150, 255, 0.35);
}
header .brand .contact .icon-link.phone-icon:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(142,176,255,0.25);
}
header .brand .contact .icon-link svg {
    width: 24px;
    height: 24px;
    fill: #3664ff;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-overlay.is-active {
    display: block;
    opacity: 1;
}
header .search-bar {
    max-width: 1140px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10010;
    display: none;
    width: 100%;
    pointer-events: none;
}
header .search-bar.is-open {
    display: block;
}
header .search-bar .search-form {
    pointer-events: auto;
}
header nav {
    position: relative;
    z-index: 10000;
}
header .search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(94, 150, 255, 0.3);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 8px 20px rgba(94, 150, 255, 0.15);
    position: relative;
    z-index: 10001;
    transform-origin: center;
    transform: scaleX(0.25);
    opacity: 0;
    transition: transform 1s ease, opacity 0.3s ease, box-shadow 0.2s ease;
}
header .search-bar.is-open .search-form {
    transform: scaleX(1);
    opacity: 1;
}
header .search-form:focus-within {
    box-shadow: 0 12px 28px rgba(94, 150, 255, 0.25);
}
header .search-input-wrapper {
    flex: 1;
    position: relative;
    z-index: 10002;
}
header .search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1d2840;
    outline: none;
    padding: 0.5rem 0.5rem;
    padding-right: 120px;
}
header .search-input::placeholder {
    color: rgba(29, 40, 64, 0.5);
}
header .search-button {
    background: linear-gradient(135deg, #5fc1ff, #6fe3ff);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    color: #0c1730;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: absolute;
    right: 20px;
}
header .search-button:hover {
    transform: translateY(-1px);
}
header .search-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(94, 150, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(94, 150, 255, 0.25);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}
header .search-dropdown.active {
    display: block;
}
header .search-dropdown-section {
    padding: 0.75rem 0;
    z-index: 10;
}
header .search-dropdown-section-title {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(29, 40, 64, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(94, 150, 255, 0.15);
    margin-bottom: 0.5rem;
}
header .search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(94, 150, 255, 0.08);
}
header .search-dropdown-item:last-child {
    border-bottom: none;
}
header .search-dropdown-item:hover {
    background: rgba(94, 202, 255, 0.1);
}
header .search-dropdown-item-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(240, 245, 255, 0.8);
    flex-shrink: 0;
}
header .search-dropdown-item-images {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
header .search-dropdown-item-images a {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}
header .search-dropdown-item-images a:hover {
    transform: scale(1.1);
}
header .search-dropdown-item-images img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(240, 245, 255, 0.8);
}
header .search-dropdown-item-content {
    flex: 1;
    min-width: 0;
}
header .search-dropdown-item-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b2740;
    margin: 0 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
header .search-dropdown-item-meta {
    font-size: 0.8rem;
    color: rgba(29, 40, 64, 0.6);
}
header .search-dropdown-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #3664ff;
    margin-left: auto;
    flex-shrink: 0;
}
header .search-dropdown-loading {
    padding: 1.5rem;
    text-align: center;
    color: rgba(29, 40, 64, 0.5);
    font-size: 0.9rem;
}
header .search-dropdown-empty {
    padding: 1.5rem;
    text-align: center;
    color: rgba(29, 40, 64, 0.5);
    font-size: 0.9rem;
}
nav {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(240, 245, 255, 0.9);
    border: 1px solid rgba(94, 150, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 16px 28px rgba(143, 159, 255, 0.2);
    flex-wrap: wrap;
}
nav a {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgba(34, 47, 86, 0.78);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 1084px) {
    nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(94,150,255,0.4) rgba(240, 245, 255, 0.5);
        gap: 0.4rem;
    }
    nav::-webkit-scrollbar {
        height: 6px;
    }
    nav::-webkit-scrollbar-track {
        background: rgba(240, 245, 255, 0.5);
        border-radius: 999px;
    }
    nav::-webkit-scrollbar-thumb {
        background: rgba(94,150,255,0.4);
        border-radius: 999px;
    }
    nav::-webkit-scrollbar-thumb:hover {
        background: rgba(94,150,255,0.6);
    }
    nav a {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
nav a:hover,
nav a.active {
    background: linear-gradient(135deg, rgba(94, 202, 255, 0.65), rgba(136, 154, 255, 0.75));
    color: #0c1230;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(94, 150, 255, 0.28);
}
nav a[href="/comanda-curier/"] {
    font-weight: 700;
    color: #0400ff;
}
main {
    max-width: 1140px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 2rem;
}
footer {
    margin-top: auto;
    padding: 0 1.5rem 2rem;
}
@media (max-width: 768px) {
    header .brand {
        align-items: flex-start;
        text-align: left;
    }
    header .brand .contact {
        text-align: left;
        margin-top: 1rem;
    }
    nav {
        justify-content: flex-start;
        border-radius: 18px;
    }
    main {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    footer {
        padding: 0 1rem 1.6rem;
    }
}
@media (max-width: 480px) {
    header {
        padding: 1.8rem 0.6rem 1.6rem;
    }
    header .brand {
        margin-bottom: 1.4rem;
        gap:0;
    }
    header .brand .contact .phone-number {
        display: none;
    }
    header .brand .contact .contact-icons {
        gap:0.4rem;
        margin-left:0;
    }
    header .brand .contact .phone-link {
        padding-left: 0px;
        border: none;
    }
    nav {
        padding: 0.2rem;
    }
    main {
        padding: 0 0.5rem;
        margin: 1.8rem auto;
    }
    footer {
        padding: 0 0.5rem 1.2rem;
    }
}
.cart-link {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 25px;
    height: 25px;
    border-radius: 999px;
    background: #ff4b4b;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #ffffff;
}
.cart-badge--lg {
    min-width: 24px;
    height: 24px;
    font-size: 0.8rem;
}
.red {
    color: #ff0000 !important;
    font-weight: 600 !important;
}
footer p {
    margin: 0.3rem 0 !important;
    padding: 0 !important;
}
footer {
    background: linear-gradient(180deg, rgba(243,248,255,0.95) 0%, rgba(225,239,255,0.95) 100%);
    color: #24365a;
    padding: 3rem 1.5rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(150,190,255,0.25);
}
.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.footer-link {
    color: inherit;
}
.footer-sal-sol-container {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-sal-sol-link {
    display: inline-block;
}
.footer-sal-sol-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    max-width: 220px;
}
.footer-copyright {
    margin: 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(51,72,110,0.6);
}
.footer-copyright--standalone {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(51,72,110,0.6);
}
.search-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(240, 245, 255, 0.8);
    font-size: 1rem;
}
.search-icon-wrapper--large {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(240, 245, 255, 0.8);
    font-size: 1.5rem;
}
.search-icon-wrapper--medium {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(240, 245, 255, 0.8);
    font-size: 1.2rem;
}
.ip-pass-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-bottom: 2px solid #ffc107;
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 10001;
}
.ip-pass-message p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}
.brand-identity-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}
.search-dropdown-loading,
.search-dropdown-empty {
    display: none;
}

/* CSS pentru retur */
.page-wrap {
    display: grid;
    gap: 2.5rem;
    color: #1f2d4d;
}
.page-hero {
    display: grid;
    gap: 1.6rem;
    padding: 3rem;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96) 5%, rgba(223,239,255,0.9) 40%, rgba(195,229,255,0.9) 100%);
    box-shadow: 0 28px 60px rgba(130, 186, 255, 0.28);
    position: relative;
    overflow: hidden;
}
.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}
.page-hero::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(120,196,255,0.42), rgba(120,196,255,0));
}
.page-hero::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(108,212,228,0.38), rgba(108,212,228,0));
}
.page-hero > * {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    margin: 0;
    font-size: 2.45rem;
    line-height: 1.2;
}
.page-hero p {
    margin: 0;
    font-size: 1.15rem;
    color: rgba(33, 53, 92, 0.82);
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.cta-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 18px 42px rgba(130, 192, 255, 0.26);
}
.cta-row a.primary {
    background: linear-gradient(135deg, #5fc1ff, #6fe3ff);
    color: #0c1730;
}
.cta-row a.secondary {
    background: rgba(255,255,255,0.78);
    color: #1d2b4d;
    border: 1px solid rgba(94,150,255,0.35);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}
.info-card {
    padding: 2.2rem;
    border-radius: 26px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(156,190,255,0.3);
    box-shadow: 0 24px 56px rgba(142, 198, 255, 0.24);
}
.info-card h2 {
    margin-top: 0;
    font-size: 1.35rem;
    color: #24365e;
}
.info-card p,
.info-card li {
    color: rgba(32,48,80,0.85);
    line-height: 1.65;
}
.info-card ul {
    margin: 1.1rem 0 0;
    padding-left: 1.1rem;
}
.steps {
    padding: 2.4rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(210,238,255,0.7), rgba(186,222,255,0.74));
    border: 1px solid rgba(118,170,255,0.36);
    box-shadow: 0 28px 60px rgba(124, 186, 255, 0.25);
}
.steps h2 {
    margin-top: 0;
    color: #1c2a4d;
}
.steps ol {
    margin: 1.4rem 0 0;
    padding-left: 1.2rem;
    line-height: 1.7;
    color: rgba(31,45,77,0.85);
}
.steps li strong {
    color: #0f2248;
}
.timeline {
    display: grid;
    gap: 1.6rem;
}
.timeline-step {
    padding: 1.9rem;
    border-radius: 24px;
    background: linear-gradient(150deg, rgba(237,248,255,0.95), rgba(210,235,255,0.9));
    border: 1px solid rgba(150, 192, 255, 0.28);
    box-shadow: 0 18px 40px rgba(138, 192, 255, 0.22);
}
.timeline-step h3 {
    margin-top: 0;
    font-size: 1.22rem;
    color: #213459;
}
.timeline-step p {
    margin: 0.4rem 0 0;
    color: rgba(32,48,80,0.85);
    line-height: 1.6;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.faq-card {
    padding: 1.9rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(156,190,255,0.3);
    box-shadow: 0 20px 48px rgba(140, 190, 255, 0.22);
}
.faq-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #213459;
}
.faq-card p {
    margin: 0.3rem 0 0;
    line-height: 1.6;
    color: rgba(32,48,80,0.85);
}
@media (max-width: 768px) {
    .page-hero {
        padding: 2.4rem;
    }
    .page-hero h1 {
        font-size: 2.1rem;
    }
    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}


