:root {
    --shop-bg: #f4f6fa;
    --shop-card: #fff;
    --shop-accent: #005fff;
    --shop-accent-2: #20be4c;
    --shop-danger: #e81717;
    --shop-gray: #28313b;
    --shop-radius: 14px;
    --shop-font: 'Inter', 'Arial', sans-serif;
}
body {
    background: var(--shop-bg);
    font-family: var(--shop-font);
    color: var(--shop-gray);
    margin: 0;
}
.shop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 16px;
}
.shop-header {
    background: var(--shop-card);
    border-radius: var(--shop-radius);
    box-shadow: 0 2px 18px #005fff19;
    padding: 28px 32px 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.shop-logo {
    height: 44px;
}
.shop-header-links {
    display: flex;
    gap: 24px;
}
.shop-header-link {
    color: var(--shop-accent);
    font-weight: bold;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 7px;
    transition: background 0.15s;
}
.shop-header-link:hover {
    background: var(--shop-accent-2);
    color: #fff;
}
.shop-sidebar {
    background: var(--shop-card);
    border-radius: var(--shop-radius);
    box-shadow: 0 1px 12px #28313b18;
    padding: 18px 18px 24px 18px;
    margin-bottom: 32px;
}
.shop-sidebar-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 16px;
}
.shop-sidebar-list {
    list-style: none;
    padding: 0; margin: 0;
}
.shop-sidebar-list li {
    margin-bottom: 10px;
}
.shop-sidebar-list a {
    display: block;
    color: var(--shop-gray);
    font-weight: 600;
    text-decoration: none;
    background: #e9edfa;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.13s;
}
.shop-sidebar-list a:hover, .shop-sidebar-list a.active {
    background: var(--shop-accent);
    color: #fff;
}
.shop-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}
.shop-card {
    background: var(--shop-card);
    border-radius: var(--shop-radius);
    box-shadow: 0 4px 28px #005fff26;
    padding: 0 0 20px 0;
    border: 1px solid #eaeaea;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
}
.shop-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--shop-radius) var(--shop-radius) 0 0;
    background: #e9edfa;
}
.shop-card-body {
    padding: 20px 18px 0 18px;
    flex: 1;
}
.shop-card-title {
    font-size: 1.13em;
    font-weight: bold;
    color: var(--shop-accent);
    margin-bottom: 6px;
}
.shop-card-brand {
    font-size: .98em;
    color: #5e6b7e;
    margin-bottom: 3px;
}
.shop-card-text {
    margin-bottom: 10px;
    color: #38434f;
}
.shop-card-price {
    font-size: 1.17em;
    font-weight: 700;
    color: var(--shop-accent-2);
    margin-bottom: 7px;
}
.shop-card-btn {
    background: var(--shop-accent);
    color: #fff;
    padding: 11px 0;
    border-radius: 7px;
    font-weight: bold;
    font-size: 1em;
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: background 0.15s;
    cursor: pointer;
    box-shadow: 0 3px 12px #005fff3b;
}
.shop-card-btn:hover {
    background: var(--shop-accent-2);
    color: #fff;
}
.shop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--shop-danger);
    color: #fff;
    font-size: .94em;
    font-weight: bold;
    border-radius: 32px;
    padding: 7px 16px;
    box-shadow: 0 2px 8px #e8171755;
}
.shop-footer {
    margin-top: 54px;
    background: #232c39;
    color: #eee;
    border-radius: 12px;
    text-align: center;
    padding: 22px 10px;
    font-size: 1.08em;
}
@media (max-width: 900px) {
    .shop-container { padding: 9px 2vw; }
    .shop-header { flex-direction: column; align-items: flex-start; padding: 18px 10px; }
    .shop-header-links { gap: 12px; margin-top: 16px; }
    .shop-products { grid-template-columns: 1fr; gap: 22px; }
    .shop-sidebar { margin-bottom: 18px; padding: 13px 7px; }
    .shop-card { min-height: 340px; }
}
body::-webkit-scrollbar {
    width: 10px;
    background: #e9edfa;
}
body::-webkit-scrollbar-thumb {
    background: #b3ccff;
    border-radius: 7px;
}

/* Contrast corect pe zone cheie */
.titluAlegeMarca, h2.titluAlegeMarca, .firstpageboxTitle h2 {
  color: #232323 !important;
  background: #fff !important;
  font-weight: 700;
  border-radius: 5px;
  padding: 10px 16px 8px 16px;
  font-size: 1.4em;
  border: 1px solid #f0f0f0;
}

/* Pentru tema dark (fundal închis) */
.titluAlegeMarca.dark,
.firstpageboxTitle h2.dark {
  color: #fff !important;
  background: #23293a !important;
}

body { background: #f5f6fb; color: #222; font-family: Inter, Arial, sans-serif; }
h1, h2, h3, .titluAlegeMarca { color: #213510; background: #fff; }
.button, .cumparaarticole { background: #005fff; color: #fff; }
.shop-card-title { color: #213510 }
.shop-card-price { color: #20be4c }
.shop-footer { background: #23293a; color: #fff }