@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;300;400;700&display=swap');

:root{
    /* fonts */
    --font-headings:'Jost', sans-serif;
    --font-default:'Jost','Arial', serif;

    /* colors */
    --primary: #C60087;
    --secondary: #2a54e5;
    --success: #64ac6d;
    --info: #efefef;
    --warning: #bf8445;
    --danger: #f44336;
    --light: #f8f8f8;
    --faded: #FAFAFA;
    --gray: #ddd;
    --dark: #2c303b;
}

body {
    font-family: var(--font-default);
    color:var(--dark);
    font-size:1rem;
}

.text-primary { color:var(--primary) !important; }
.text-secondary { color:var(--secondary) !important; }
.text-success { color:var(--success) !important; }
.text-info { color:var(--info) !important; }
.text-warning { color:var(--warning) !important; }
.text-danger { color:var(--danger) !important; }
.text-light { color:var(--light) !important; }
.text-faded { color:var(--faded) !important; }
.text-dark { color:var(--dark) !important; }
.text-bold { font-weight:600;}

.btn-primary,.btn-primary:hover { background-color:var(--primary) !important; border-color:var(--primary) !important; color:white !important; }
.btn-secondary,.btn-secondary:hover { background-color:var(--secondary) !important; border-color:var(--secondary) !important; color:white !important; }
.btn-success,.btn-success:hover { background-color:var(--success) !important; border-color:var(--success) !important; color:white !important; }
.btn-info,.btn-info:hover { background-color:var(--info) !important; border-color:var(--info) !important; color:white !important; }
.btn-warning,.btn-warning:hover { background-color:var(--warning) !important; border-color:var(--warning) !important; color:white !important; }
.btn-danger,.btn-danger:hover { background-color:var(--danger) !important; border-color:var(--danger) !important; color:white !important; }
.btn-light,.btn-light:hover { background-color:var(--light) !important; border-color:var(--light) !important; color:black !important; }
.btn-faded,.btn-faded:hover { background-color:var(--faded) !important; border-color:var(--gray) !important; color:black !important; }
.btn-dark,.btn-dark:hover { background-color:var(--dark) !important; border-color:var(--dark) !important; color:white !important; }

a { color:var(--secondary); }
a:hover { color:var(--primary); }
.clear {clear:both;}
b,strong { font-weight:600; }
.outer {  width:90vw;  margin:0px auto; }

h1,h2,h3,h4,h5 {
    font-family:var(--font-headings);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom:0.2rem;
}

/* START HEADER */

#subheader-mobile { display:none; }

#first-header {
    background:black;
    font-size:0.8rem;
}

#first-header h1 {
    color: var(--light);
    line-height: 30px;
    font-size:0.8rem;
    margin-bottom:0px;
}

#first-header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
}

#first-header ul li {
    display: block;
    float: left;
    height: 100%;
    border-left: 1px solid var(--dark);
    letter-spacing:0.03rem;
}

#first-header ul li:last-of-type {
    border-right: 1px solid var(--dark);
}

#first-header ul li a {
    display: block;
    color: var(--light);
    padding: 0 12px;
    line-height: 30px;
    text-decoration: none;
}

#first-header ul li a:hover {
    color:var(--faded);
    text-decoration:underline;
}

#header-mobile { display:none; }

#header #part1 {
    background:white;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
    z-index: 10;
    position: relative;
}

#header .logo {
    max-width:150px;
    margin-top:7px;
    margin-bottom:7px;
    margin-right:30px;
}

#header-part1-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family:var(--font-headings);
    font-weight:500;
}

#header-part1-menu li {
    float:left;
    margin:0;
    padding:0;
}

#header-part1-menu li a {
    color:var(--dark);
    font-size:1.1rem;
    line-height: 70px;
    display: block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding-left:0.7rem;
    padding-right:0.7rem;
}

#header-part1-menu li a:hover {
    background:var(--faded);
}

#header-part1-menu li.active  {
    background-color:var(--faded);
}

#header #part1 .search-field {
    width:70%;
    height:40px;
    margin-top:15px;
    padding:1rem;
    margin-left:30px;
    border:1px solid black;
    border-radius:20px;
    color:var(--dark);
    outline: none;
}

#header #part1 .search-btn {
    background:none;
    border:none;
    outline:none;
    color:var(--dark);
}

#header #part1 .fav-btn {
    font-size:18px;
    color:var(--dark);
}

#submenu {
    width:100%;
    position:absolute;
    z-index:10;
    display:none;
}

#submenu .container-fluid {
    background:var(--light);
    margin-left:15px;
    margin-right:15px;
}

.submenu {
    padding:15px;
    font-family:var(--font-headings);
    border-left:1px solid var(--info);
    border-right:1px solid var(--info);
    border-bottom:1px solid var(--info);
}

.submenu .col {
    border-right: 1px solid var(--info);
}

.submenu .col:last-of-type {
    border-right:none;
}

.submenu-title {
    border-bottom: 1px solid #2d2d2d;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight:600;
    font-size:1rem;
    color:black;
    display:inline-block;
    margin-bottom:1rem;
}

.submenu ul {
    list-style-type:none;
    margin:0;
    padding:0;
    margin-top:0.9rem;
    margin-bottom:1rem;
}

.submenu ul li a {
    font-size:1rem;
    color:var(--gray-dark);
    display:block;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-left:1rem;
}

.submenu ul li a:hover {
    color:var(--secondary);
}

.overlay {
    position: absolute;
    z-index: 9;
    background: rgba(44,48,58,0.7);
    width: 100%;
    height: 100%;
    display: none;
}
/* END HEADER */

/* CONTENT */
#content {
    padding-top:1rem;
    padding-bottom:1rem;
}
/* END CONTENT */

/* LANDING PAGE */
.block-text h1 { font-size:2.5rem; font-weight:600; letter-spacing:0.5px; }
.block-text h2 { font-size:1.9rem; font-weight:600; letter-spacing:0.5px; }
.block-text h3 { font-size:1.5rem; font-weight:600; }
.block-text h4 { font-size:1.2rem; }
.block-text h5 { font-size:1rem; font-weight:bold; }
.block-cols .col-xl-6 a { font-size:1.8rem; font-weight: 600;}

.block-cols h4 { text-align:center; }

.block-cols h4 a {
    border-bottom:1px solid var(--dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    display: inline-block;
    text-align:center;
    margin:0.8rem auto;
}

.block-cols h4 a:hover {
    text-decoration:none;
    border-bottom:1px solid var(--secondary);
    color: var(--secondary);
}

.block-cols img {
    width:100%;
    object-fit:cover;
}

.block-cols.cols-2 img { height:500px; }
.block-cols.cols-3 img { height:300px; }
.block-cols.cols-4 img { height:250px; }

.block-cols .item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--light);
    border-radius: 5px;
}

.custom-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}

.block-cols .custom-nav {
    top:32%;
}

.owl-dots {
    margin-top:1rem;
}

.owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    border-radius:50%;
    background: var(--white);
    border: 1px solid #eaeaea;
    z-index: 8;
    font-size: 1.3rem;
    color: var(--dark);
    text-align:center;
    outline: none;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    border:1px solid var(--faded);
    color:var(--secondary);
    background:white;
}

.owl-prev { left: -0.5rem; }
.owl-next { right: -0.5rem; }

.produs-carousel img {
    width:100%;
    height:250px;
    object-fit: contain;
    border:1px solid var(--light);
    border-radius:5px;
}

.produs-carousel h5 {
    font-size:0.9rem;
    letter-spacing: 0.3px;
    font-weight:normal;
    text-align:center;
    margin-top:0.5rem;
    max-height:3.5rem;
    overflow:hidden;
    padding:0px 10px;
}

.produs-carousel h5 span {
    display:inline-block;
    font-weight:800;
    color:var(--dark);
    background:var(--light);
    padding:2px 5px;
    border-radius:5px;
    text-transform:uppercase;
    font-size:0.8rem;
    margin-bottom:5px;
}

.produs-carousel a {
    color:var(--gray-dark);
}

.produs-carousel a:hover {
    color:var(--secondary);
    text-decoration:none;
}

/* END LANDING PAGE */


/* START BREADCRUMB */
#breadcrumb-container {
    padding:0.8rem 0px;
    border-bottom:1px solid var(--gray);
}

#breadcrumb {
    list-style-type:none;
    font-size:0.8rem;
    margin:0px;
    padding:0px;
    letter-spacing: 0.2px;
}

#breadcrumb li {
    float:left;
    margin-right:8px;
    color:var(--dark);
    font-weight:600;
}

#breadcrumb a {
    font-weight:400;
    color:var(--dark);
}

#breadcrumb li span {
    font-weight:400;
}

/* END BREADCRUMB */

/* START CATEGORY LIST */
#header-container {
    padding:1rem 0px 0px 0px;
    border-bottom:1px solid var(--gray);
    background:var(--light);
}

#header-container h1 {
    font-size:2rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:0.8rem;
}

#header-container h1 span.sufix {
    font-weight:400;
    letter-spacing:0.6px;
    font-size:1.3rem;
    color:var(--gray-dark);
}

#header-description {
    display:block;

}

#header-description p {
    height:60px;
    font-size:0.9rem;
    letter-spacing:1px;
    overflow:hidden;
    color:var(--gray-dark);
    margin-bottom:0px;
    position: relative;
    z-index: 1;
}

#header-description a {
    color:var(--dark);
    font-weight:600;
    letter-spacing:1.8px;
    font-size:0.9rem;
    background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),color-stop(1.38em,#f8f8f8));
    background: linear-gradient(180deg,hsla(0,0%,100%,0),#f8f8f8 1.38em);
    display:block;
    padding-top:1rem;
    margin-top:-.8rem;
    position: relative;
    z-index: 2;
    margin-bottom:1rem;
}

#header-description p.expanded {
    height:auto;
    color:var(--dark);
}

#header-description a.expanded {
    background:none;
}

#header-subcategorii {
    margin-top:.5rem;
}

#header-subcategorii a {
    display:flex;
    font-size:1.1rem;
    letter-spacing: 1px;
    margin-bottom:1rem;
    color:var(--dark);
    padding:0.5rem;
    border-radius:20px;
    background:white;
    border:1px solid var(--gray);
}

#header-subcategorii a:hover {
    text-decoration:none;
    color:var(--secondary);
}

#header-subcategorii img {
    display:block;
    width:50px;
    height:50px;
    border-radius:50px;
    border:1px solid var(--gray);
    padding:2px;
}

#header-subcategorii a:hover img {
    border:1px solid var(--secondary);
}

#header-subcategorii a:hover span {
    background:white;
}

#header-subcategorii span {
    display:block;
    margin-left:10px;
    line-height:1.3;
    text-transform:capitalize;
}

#col-filtrare {
    border-radius: 8px;
    border: 1px solid #eaeaea;
    padding: 1rem;
}

.filtru {
    font-size:0.9rem;
}

.filtru-header {
    text-transform: uppercase;
    display: block;
    padding: .3rem .5rem;
    background: var(--light);
    margin-bottom: .5rem;
    border-radius: 8px;
    color: var(--dark);
    font-weight:600;
}

.filtru-search {
    padding: .3rem .5rem;
}

.filtru ul {
    list-style-type: none;
    margin: .4rem 0 .4rem .8rem;
    padding: 0;
}

.filtru ul li a {
    display: block;
    margin-bottom: 3px;
    color: var(--gray-dark);
    font-size:1rem;
}

.filtru ul li a:hover {
    text-decoration:none;
    color:var(--secondary);
}

#sortare {
    border-radius: 8px;
    border-bottom: 1px solid var(--light);
    font-size: .9rem;
    padding-bottom: .5rem;
}


#sortare a {
    display: inline-block;
    margin-right: .5rem;
    margin-bottom: .5rem;
}

#sortare a.active {
    font-weight: 600;
    text-decoration: underline;
}

.pagination a {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    line-height: 2.3rem;
    padding: .2rem;
    background: var(--light);
    border-radius: 100%;
    color: var(--dark);
    margin-left: 2px;
    margin-right: 2px;
}

.pagination a:hover, .pagination li.active a {
    background: var(--dark);
    color: var(--light);
    text-decoration: none;
}

#cautari {
    max-width:100%;
    position:relative;
    height:40px;
    white-space: nowrap;
    overflow:hidden;
}

#cautari .tag {
    font-size:0.8rem;
    padding: 0.5rem 1rem;
}

.tag {
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.65,.05,.36,1);
    outline: 0;
    white-space: nowrap;
    appearance: none;
    display: inline-block;
    color: var(--dark);
    background: white;
    border: 1px solid var(--gray);
    border-radius: 50vw;
    box-shadow: inset 0 0 0 2px transparent;
    padding: .4rem 1rem;
    margin-bottom: .5rem;
}

.tag:hover {
    box-shadow: inset 0 0 0 2px var(--info);
    text-decoration: none;
    color:var(--secondary);
}

/* END CATEGORY LIST */

.produse-row .col-6 {
    padding-left:10px;
    padding-right:10px;
}

#recente { padding-bottom:2.5rem; }

/* START ITEM ARTICOL */
.blog-item {
    margin-bottom:1.5rem;
}

.blog-image img {
    width:100%;
    height:250px;
    border:1px solid var(--light);
    border-radius:5px;
    object-fit:cover;
}

.blog-content h2 {
    margin-top:1rem;
    font-weight:600;
    font-size:1.3rem;
    line-height:1.2;
    max-height:3rem;
    overflow:hidden;
}

.blog-content p {
    font-size:1rem;
    color:var(--dark);
    margin-top:0.5rem;
}

.blog-content a {
    color:var(--dark);
}

.blog-content a:hover {
    color:var(--secondary);
}

/* END ITEM ARTICOL */

/* START ITEM PRODUS */
.produs-col {
    border-radius:8px;
    border:1px solid #eaeaea;
    padding:0.5rem;
    background:var(--white);
    margin-bottom:2rem;
}

.produs-col .produs-favorit {
    color: var(--secondary);
    display: inline-block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 25px;
    margin-top: 5px;
    z-index: 2;
    padding: 5px;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    text-align: center;
    background: #fff;
}

.produs-col .produs-img {
    position:relative;
    z-index:1;
}

.produs-col .produs-img img {
    border-radius:8px;
    border:1px solid var(--light);
    width:100%;
    height:100%;
    object-fit: contain;
    position:relative;
}

.produs-col .produs-img .produs-tag {
    display:inline-block;
    color:white;
    position:relative;
    z-index:2;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding:0.5rem 0.5rem;
    font-size:0.8rem;
    line-height:0.7rem;
    top:auto;
    bottom:1.7rem;
    margin-left:1px;
}

.produs-col .produs-rating {
    font-size:0.8rem;
    color:var(--gray);
    padding:0.3rem 0;
}

.produs-col .produs-titlu h3 {
    font-size:1rem;
    line-height:1.3;
    min-height:2.6rem;
    max-height:2.6rem;
    overflow:hidden;
    font-weight:normal;
    margin:0.3rem 0px 0.5rem 0px;
}

.produs-col .produs-titlu h3 a {
    color:var(--dark);
}

.produs-col .produs-pret {
    color:var(--danger);
    font-size:1.3rem;
    font-weight:normal;
}

.produs-col .produs-pret sup {
    font-size:0.8rem;
}

.produs-col .produs-btn .btn {
    border-radius:8px;
}
/* END ITEM PRODUS */

.produse-row .blog-content h2 {
    margin-top:0.6rem;
}

.articol-produse {
    margin-top:10px;
    margin-bottom:30px;
    padding-left:10px;
    padding-right:10px;
}

#ghid-outer {
    padding-left:10px;
    padding-right:10px;
}

#ghid-content {
    padding:0 1rem;
    border-radius:10px;
    margin-bottom:1rem;
}

#ghid-content h4 {
    font-weight:800;
}

#ghid-content h4 mark {
    color: inherit;
    padding: 0;
    background: none;
    background-image: linear-gradient(120deg, rgb(216, 216, 216) 100%, rgb(248, 248, 248) 90%);
    background-repeat: no-repeat;
    background-size: 100% .2em;
    background-position: 0 80%;
    position: relative;
}

#ghid-content ul {
    margin:0px;
    padding:0px;
    list-style-type: none;
    margin-top:0.8rem;
}

#ghid-content ul li a {
    display:inline-block;
    font-size:1.1rem;
    font-weight:500;
    padding-bottom:2px;
    border-bottom:2px solid white;
    margin-bottom:5px;
}

#ghid-content ul li a:hover {
    text-decoration:none;
    color:var(--dark);
    border-bottom:2px solid var(--secondary);
}

/* START DETALII PRODUS */
.produs-detalii-img img {
    border:1px solid var(--light);
    border-radius:5px;
    width:100%;
}

.produs-detalii-img .custom-nav { top: 45%; }
.produs-detalii-img .owl-prev { left: 1.5rem; }
.produs-detalii-img .owl-next { right: 1.5rem; }
.produs-detalii-img .owl-nav .owl-prev, .produs-detalii-img .owl-nav .owl-next {
    width:2.5rem;
    height:2.5rem;
    font-size: 1.3rem;
    line-height: 2rem;
    color:var(--dark);
}

#produs-detalii h1 {
    font-size:1.5rem;
    letter-spacing: 1.3px;
    font-weight: 400;
}

.produs-detalii-brand {
    display: inline-block;
    font-weight: 600;
    color: black;
    background: var(--light);
    padding: 2px 5px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing:1.5px;
}

.produs-detalii-brand a {
    color:var(--dark);
}

.produs-detalii-rating {
    margin-bottom:30px;
    margin-top:20px;
}

.produs-detalii-pret {
    border-radius:10px;
    border-top:1px solid var(--info);
    border-bottom:1px solid var(--info);
    padding:1rem 0px 0px 0px;
    margin-bottom:30px;
}

.produs-detalii-pret h2 {
    font-weight:600;
    margin-bottom:0;
    font-size:2.2rem;
}

.produs-detalii-pret sup {
    font-weight:400;
    margin-bottom:0;
}

.produs-detalii-vendor {
    background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),color-stop(1.38em,var(--light)));
    background: linear-gradient(180deg,hsla(0,0%,100%,0),var(--light) 1.38em);
    font-size:0.8rem;
    letter-spacing:1px;
    margin-top:0.2rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color:var(--gray-dark);
    padding-top:3px;
    padding-bottom:3px;
}

.produs-detalii-beneficii {
    margin-bottom:30px;
}

.produs-detalii-beneficiu {
    font-size:0.8rem;
    letter-spacing: 1px;
    line-height:1.2;
    color:var(--gray-dark);
    border:1px solid var(--light);
    padding:10px;
}

.produs-detalii-beneficiu i {
    margin-top:10px;
}

#produs_voucher {
    border:1px solid #efefef;
    border-left:5px solid #efefef;
    border-right:5px solid #efefef;
    border-radius:1rem;
    padding:1rem 1rem;
    margin-bottom:1rem;
}

.produs-detalii-btn a {
    font-weight:600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#produs-detalii #header-description a {
    background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),color-stop(1.38em,white));
    background: linear-gradient(180deg,hsla(0,0%,100%,0),white 1.38em);
}

/* END DETALII PRODUS */

/* START ARTICOL */
.articol-cover img {
    border:1px solid var(--gray);
    border-radius:5px;
    width:100%;
    padding:2px;
}

.articol-content, .articol-content p {
    font-size:1.15rem;
    line-height:1.4;
    color:var(--gray-dark);
}

.articol-titlu {
    font-size:2.2rem;
    font-weight:600;
}

#sumar {
    background:var(--light);
    border:1px solid var(--light);
    padding:1rem;
    border-radius:8px;
    margin-bottom:1rem;
}

#sumar_ul {
    margin-bottom:0px;
    margin-top:0.5rem;
}


#content .articol-content .produse-row {
    background: #fcfcfc;
    border-radius: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.articol-content .produs-img {
    height:250px;
}

.articol-content .img {
    max-width:80%;
    display:block;
    border:1px solid var(--gray);
    border-radius:5px;
    margin-bottom:1rem;
}

.articol-content h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.articol-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.articol-content .produs-col {
    margin-bottom:0px;
}

.articol-content .produs-col .produs-pret span {
    font-size:1.2rem;
}

/* END ARTICOL */

.magazine-col {
    padding: 1.5rem;
    background: linear-gradient(180deg, var(--dark) 40%, var(--white) 80%);
    margin-bottom: 2rem;
    text-align:center;
    color:var(--white);
    height:100%;
    border-radius:8px;
}

.magazine-col b {
    font-weight: 800;
    font-size:1.2rem;
}

.magazine-col span {
    display:inline-block;
    padding:.2rem 0.5rem;
    border-radius:10px;
    background:var(--dark);
    color:var(--white);
    font-size:.6rem;
}

.magazine-col ul {
    margin:0px;
    padding:0px;
    list-style-type: none;
}

.magazine-col ul li a {
    display:block;
    margin-bottom:.5rem;
    padding:.5rem;
    background:var(--white);
    border: 1px solid #eaeaea;
    border-radius:3px;
    font-weight:500;
    color:var(--dark);
}

.magazine-col ul li a:hover {
    background:var(--success);
    color:var(--white);
    text-decoration:none;
}

/* FOOTER */
#footer {
    background-image: linear-gradient(var(--light), white);
    padding:2rem 0px;
}

#footer .footer-title {
    border-bottom:1px solid var(--dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    display: inline-block;
}

#footer a {
    font-size: 0.87rem;
    color: var(--secondary);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

#footer a:hover {
    color:var(--dark);
}

#footer p {
    font-size:0.87rem;
    line-height: 1.6;
    margin-bottom:0;
}

/* RESPONSIVE LARGE */
@media (min-width: 1550px) {
    .outer { width: 1440px; }
}

/* RESPONSIVE TABLET */
@media (max-width: 990px) {
    .outer { width: 95vw; }
}

/* RESPONSIVE MOBILE */
@media (max-width: 860px) {
    #first-header { display:none; }
    #header { display:none; }
    #header-mobile { display:block; }

    #header-mobile {
        background:white;
        padding-top:0.5rem;
        padding-bottom:0.5rem;
        box-shadow: 0 0 4px rgba(0,0,0,0.3);
        -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
        z-index: 10;
        position: relative;
    }

    #header-mobile .logo {
        max-width:110px;
    }

    #header-mobile a.header-btn {
        color:var(--gray-dark);
        text-align:center;
        display:inline-block;
        font-size:0.9rem;
        margin-left:10px;
        margin-top:5px;
    }

    #header-mobile a.header-btn i {
        display:block;
        font-size:1rem;
        margin:0px auto;
    }

    #header-mobile a.header-btn:hover {
        text-decoration:none;
        color:var(--secondary);
    }

    #subheader-mobile {
        display:none;
        -webkit-box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.75);
        box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.75);
    }

    #search-mobile {
        margin:10px 0px;
    }

    #search-mobile .search-field {
        width:85%;
        height:30px;
        padding:1rem;
        border-radius:20px;
        color:var(--gray-dark);
        outline: none;
    }

    #search-mobile .search-btn {
        background:none;
        border:none;
        outline:none;
        color:var(--dark);
    }

    #menu-mobile ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    #menu-mobile ul li a {
        display: block;
        padding: 12px 5px;
        color: var(--dark);
        font-size: 1rem;
        font-weight: 600;
        border-bottom: 1px solid var(--light);
    }

    #menu-mobile ul li ul li a {
        color: var(--gray-dark);
    }

    #menu-mobile a i {
        float: right;
        margin-top: 3px;
        color: var(--gray-dark);
        font-size: 13px;
    }

    #menu-mobile .submeniu-mobile{display:none}

    #content p { font-size:1rem;}
    .block-text h1 { font-size:1.6rem; font-weight:600; letter-spacing:0.2px; }
    .block-text h2 { font-size:1.4rem; font-weight:600; letter-spacing:0.2px; }
    .block-text h3 { font-size:1.2rem; font-weight:600; }
    .block-text h4 { font-size:1rem; }
    .block-text h5 { font-size:0.9rem; font-weight:bold; }
    .block-cols .col-xl-6 a { font-size:1.2rem;}

    .produs-carousel h5 {
        font-size:0.9rem;
        letter-spacing: 0.3px;
        font-weight:normal;
    }

    #header-container h1 {
        font-size:1.6rem;
    }

    #header-container h4 {
        font-size:1rem;
    }

    #col-filtrare {
        display: none;
        margin-bottom: 1rem;
    }

    #sortare {
        margin-left: -10px;
        margin-right: -10px;
    }

    #sortare .no-gutters .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }

    #sortare a.btn span {
        display: block;
        font-size: 0.8rem;
    }

    #sortare a.btn {
        line-height: 1.3;
        margin: 0;
    }

    .produs-col .produs-img {
        width:100%;
        height:250px;
    }

    .produs-col .produs-info {
        padding:0.3rem 0.5rem;
    }

    .produs-col .produs-titlu {
        font-size:0.8rem;
    }

    .produs-col .produs-titlu h3 {
        font-size: 0.9rem;
        max-height: 1.8rem;
        min-height: 2.2rem;
    }

    .produs-col .produs-pret s {
        font-size:0.8rem;
        display:none;
    }

    .produs-col .produs-pret span {
        font-size: 1.1rem;
        margin-top:5px;
        display:block;
    }

    .produse-row .col-6, .articol-content .col-6 {
        padding-left:5px;
        padding-right:5px;
    }

    .produs-col {
        margin-bottom:10px;
    }

    .articol-produse {
        padding-left:5px;
        padding-right:5px;
    }

    #ghid-outer {
        padding-left:5px;
        padding-right:5px;
        margin-top:1rem;
    }

    #ghid-content {
        padding:0;
    }

    #ghid-content h4 {
        font-weight:800;
        font-size:1.3rem;
    }

    #ghid-content ul {
        margin-top:0.6rem;
    }

    #ghid-content ul li a {
        font-size:0.95rem;
        margin-bottom:1px;
    }

    #content .articol-content p {
        line-height:1.5;
        font-size:1rem;
    }

    .articol-titlu,#produs-detalii h1 {
        font-size:1.4rem;
    }

    .articol-content .img {
        max-width:100%;
    }

    .articol-content h2 {
        margin-top: 0.7rem;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .articol-content h3 {
        margin-top: 0.7rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .produs-col .produs-info {
        display:block;
    }

    .produs-col .produs-favorit {
        right:10px;
    }

    .magazine-col {
        padding: 1.5rem .5rem;
    }

    .magazine-col ul li a {
        padding:.25rem;
    }

}