/* =========================================
   POLIUS BLACK ORANGE THEME
   OpenCart 4.1.0.3
   stylesheet.css
========================================= */


/* ==========================
   ЦВЕТОВАЯ СХЕМА
========================== */

:root {

    --polius-orange: #ff6a00;
    --polius-orange-dark: #e65c00;

    --polius-black: #1c1c1c;
    --polius-black-dark: #111111;

    --polius-white: #ffffff;

    --polius-grey: #666666;
    --polius-grey-light: #f5f5f5;


    --bs-primary: #ff6a00;
    --bs-secondary: #1c1c1c;

    --bs-body-bg: #ffffff;
    --bs-body-color: #222222;

    --bs-link-color: #ffffff;
    --bs-link-hover-color: #ff6a00;
}



/* ==========================
   ОСНОВА
========================== */

body {
    background: #ffffff;
    color: #222222;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111111;
}


p {
    color: #333333;
}



/* ==========================
   ССЫЛКИ
========================== */

a {
    color: #ff6a00;
    text-decoration: none;
}


a:hover {
    color: #e65c00;
}



/* ==========================
   ВЕРХНЯЯ ПАНЕЛЬ
========================== */

#top {
    background: #111111;
}


#top a {
    color: #ffffff !important;
}


#top a:hover {
    color: #ff6a00 !important;
}



/* ==========================
   ШАПКА
========================== */

header,
.header {
    background: #1c1c1c;
}


header a,
.header a {
    color: #ffffff !important;
}


header a:hover,
.header a:hover {
    color: #ff6a00 !important;
}



/* ==========================
   МЕНЮ
========================== */

.navbar,
.main-menu {
    background: #111111;
}


.navbar a,
.nav-link,
.main-menu a {
    color: #ffffff !important;
}


.navbar a:hover,
.nav-link:hover,
.main-menu a:hover {
    color: #ff6a00 !important;
}



/* ==========================
   ВЫПАДАЮЩИЕ МЕНЮ
========================== */

.dropdown-menu {
    background: #ffffff;
}


.dropdown-item {
    color: #222222 !important;
}


.dropdown-item:hover {
    color: #ff6a00 !important;
    background: #f5f5f5;
}



/* ==========================
   КАРТОЧКИ ТОВАРОВ
========================== */

.product-thumb,
.card {
    background: #ffffff;
    border: 1px solid #e4e4e4;
}


.product-thumb a,
.card a,
.card-title {
    color: #111111 !important;
}


.product-thumb a:hover,
.card a:hover {
    color: #ff6a00 !important;
}


.product-thumb p,
.description {
    color: #555555;
}



/* ==========================
   ЦЕНА
========================== */

.price {
    color: #ff6a00 !important;
    font-weight: bold;
}


.price-old {
    color: #999999 !important;
}


.price-new {
    color: #e65c00 !important;
}



/* ==========================
   КНОПКИ
========================== */

.btn-primary {
    background: #ff6a00 !important;
    border-color: #ff6a00 !important;
    color: #ffffff !important;
}


.btn-primary:hover {
    background: #e65c00 !important;
}



/* ==========================
   ФОРМЫ
========================== */

input,
textarea,
select {
    background: #ffffff;
    color: #222222;
    border: 1px solid #cccccc;
}



/* ==========================
   ФУТЕР
========================== */

footer,
.footer {
    background: #111111;
}


footer a,
.footer a {
    color: #ffffff !important;
}


footer a:hover,
.footer a:hover {
    color: #ff6a00 !important;
}



/* ==========================
   МОБИЛЬНАЯ ВЕРСИЯ
========================== */

@media (max-width: 768px) {

    .navbar a,
    .nav-link {
        color: #ffffff !important;
    }

}