:root {
    --text: #6c757d;
    --accent: #ffe500;
    --accent-light: #fff7d8;
    --accent-dark: #fec401;
    --contrast: #3d464d;
    --section-bg: #efe8de;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/roboto/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/roboto/Roboto-Regular.woff') format('woff'),
    url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'),
    url('../fonts/roboto/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/roboto/Roboto-Medium.woff') format('woff'),
    url('../fonts/roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local('Roboto-Bold'),
    url('../fonts/roboto/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/roboto/Roboto-Bold.woff') format('woff'),
    url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html,
body {
    height: 100%;
}

body {
    min-width: 360px;
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--contrast);
    transition: all .3s;
}

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

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main.main {
    flex: 1 1 auto;
    background-color: var(--section-bg);
}

::selection {
    background-color: #aef1fc;
    color: #000;
}

.btn-warning {
    background-color: var(--accent);
}

.dropdown-toggle::after {
    border: 0;
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 12px;
    transition: all .3s;
    position: relative;
    top: 3px;
    float: right;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.header-subtitle {
    position: relative;
    padding-bottom: 10px;
    color: #000;
    letter-spacing: 1px;
}

.header-subtitle::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background: var(--accent);
    left: 0;
    bottom: 0;
}

.home-about h1,
.section-title {
    color: #000;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/*.section-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background-color: var(--contrast);
}*/

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-input:focus {
    box-shadow: none;
}

/* Header */
body.admin-bar header.header {
    top: 32px;
}

.top-line-wrapper {
    background-color: var(--accent);
}

.top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-line h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
}

.top-line a {
    color: #000;
    text-decoration: none;
    transition: all .3s;
}

.top-line a:hover {
    color: var(--contrast);
}

.ecollars-navbar {
    background-color: #000;
    box-shadow: 0 9px 16px rgba(0, 0, 0, .5);
}

.header-logo {
    width: 200px;
}

.header-logo:hover,
.footer-logo:hover {
    filter: brightness(0) saturate(100%) invert(63%) sepia(92%) saturate(459%) hue-rotate(1deg) brightness(104%) contrast(104%);
}

.main-menu > li > a {
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.main-menu .dropdown-item {
    transition: all .3s;
}

.main-menu a {
    color: #fff;
}

.main-menu .dropdown-item:hover,
.main-menu a:hover {
    color: var(--accent);
}

.ecollars-navbar-right {
    display: flex;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.header-user-icons {
    display: flex;
    margin-bottom: 0;
}

.header-user-icons li {
    position: relative;
    margin-left: 10px;
}

.header-user-icons a,
.mobile-menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #3d3d3d;
    color: #fff;
    border-radius: 50%;
    transition: all .3s;
}

.header-user-icons a:hover {
    background-color: transparent;
    color: #fff;
    box-shadow: 0 0 4px rgba(255, 255, 255, .4);
}

.header-user-icons li span {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: var(--accent);
    font-size: 12px;
    color: var(--contrast);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.additional-search-form,
.aws-container {
    position: absolute;
    max-width: 1320px;
    left: 50%;
    transform: translate(-50%, -100%);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 89px;
    z-index: 10;
    transition: all .5s;
    background: #212529;
}

.additional-search-form.show,
.aws-container.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.aws-container .aws-search-form {
    height: 100%;
}

.aws-container .aws-search-field {
    border: 0;
    background-color: var(--bs-body-bg);
    color: #a9adb1;
    font-size: 1rem;
}

.aws-container .aws-search-field:focus {
    box-shadow: 0 0 4px rgba(255, 255, 255, .4);
    background-color: var(--bs-body-bg);
}

.aws-container .aws-search-form.aws-show-clear.aws-form-active .aws-search-clear {
    display: none !important;
}

.aws-container .aws-search-form .aws-form-btn {
    background: #212529;
    border: 0;
    margin-right: 42px;
}

.aws-container .aws-search-form .aws-form-btn:hover {
    background: #212529;
}

.aws-container i {
    font-size: 25px;
    color: #fff;
}

#search-form-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 100%;
    border: 0;
    background: #212529;
}

.additional-search-form .form-control {
    height: 100%;
    border-radius: 0;
    padding-right: 80px;
}

.additional-search-form .form-control:focus {
    box-shadow: 0 0 4px rgba(255, 255, 255, .4);
    border-color: #495057;
}

.additional-search-form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    border: 0;
    background: transparent;
}

#search-form-close {
    right: 10px;
}

#search-form-btn {
    right: 45px;
}

.cart-table img {
    height: 50px;
    width: 50px;
}

.cart-table td {
    vertical-align: middle;
}

.cart-modal-table a {
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}

.cart-modal-table a:hover {
    color: var(--accent);
}

.cart-modal-table tr td {
    background-color: rgba(255, 255, 255, .05);
}

/* Header */

/* Catalog + Slider */
section.catalog {
    padding-top: 30px;
    padding-bottom: 30px;
}

.catalog-menu {
    border-radius: 10px;
    overflow: hidden;
}

.catalog-menu > li > .nav-link {
    color: #fff !important;
}

.catalog-menu a {
    padding: 16px 10px;
    color: #fff;
}

.catalog-menu > li > .dropdown-menu {
    width: 100%;
    position: static !important;
    transform: none !important;
}

.catalog-menu > li {
    background-color: var(--contrast);
    letter-spacing: 1px;
}

.catalog-menu .dropdown-menu {
    background-color: #000;
}

.catalog-menu > .dropdown > .dropdown-menu > li {
    padding-left: 10px;
    padding-right: 10px;
}

.catalog-menu > .dropdown > .dropdown-menu > li > a {
    border-bottom: 1px solid #333;
}

.catalog-menu > .dropdown > .dropdown-menu > li > a:hover {
    color: var(--accent);
}

.catalog-menu .dropdown-menu .dropdown-toggle::after {
    border: 0;
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 12px;
    transition: all .3s;
    position: relative;
    top: 1px;
    float: right;
}

.catalog-menu .nav-link:focus {
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-dark);
}

.swiper-pagination-bullet-active {
    background: var(--accent-dark);
}

.swiper-slide img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.swiper-text {
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, .5);
    color: #000;
    padding: 5px;
    text-align: center;
    width: 100%;
    /* right: 0; */
}

.swiper-slide a {
    color: var(--contrast);
}

.swiper-slide a:focus-visible {
    outline: none;
}

/* Catalog + Slider */

/* Home sections */
.home-products-1 {
    /* https://architextures.org/textures */
    background: url(../img/textures/texture-10.jpg) center #fff;
    border-top: 5px solid var(--accent-dark);
    border-bottom: 5px solid var(--accent-dark);
}

/* Home sections */

/* Product card */
.product-card {
    position: relative;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .3s;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 0 10px rgba(192, 192, 192, .7);
}

.product-card .ajax-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .5);
    z-index: 2;
    display: none;
}

.product-card .ajax-loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

.product-card .added_to_cart.wc-forward {
    display: none;
}

.product-card .product-card-img {
    text-align: center;
    width: 100%;
    height: 255px;
    display: block;
}

.product-card .product-card-img img {
    max-height: 250px;
    width: 100%;
    object-fit: contain;
}

.product-card .product-card-content {
    padding: 8px 14px 10px 14px;
    background: #fafafa;
    transition: .3s;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-card .product-card-title a {
    transition: all .3s;
}

.product-card .product-card-title a:hover {
    color: var(--accent-dark);
}

.product-card .product-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 30px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.product-card .product-card-title a {
    color: #000;
    text-decoration: none;
    display: block;
}

.product-card .product-card-rating {
    margin-bottom: 10px;
}

.product-card .product-card-footer {
    border-top: 1px solid #e8e8e8;
    padding-top: 10px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-card .product-card-price {
    color: #000;
    font-weight: 700;
}

.product-card .product-card-price small {
    color: #bbb;
    font-weight: 400;
    text-decoration: line-through;
    font-size: 0.8rem;
}

span.price {
    display: block;
    text-align: center;
}

span.price,
.price ins {
    text-decoration: none;
}

span.price del {
    font-weight: 400;
    font-size: .8rem;
    text-decoration: line-through;
}

.product-card .onsale {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--accent);
    color: var(--contrast);
    padding: 5px 10px;
}

.product-card-add2cart {
    color: var(--contrast);
    border-color: var(--contrast);
}

.home-products-2 {
    background-color: var(--section-bg);
}

.anti-barking img {
    border: 3px solid var(--accent-dark);
    border-radius: 15px;
}

.home-products-3 {
    min-height: 500px;
    position: relative;
    border-top: 5px solid var(--accent-dark);
    border-bottom: 5px solid var(--accent-dark);
}

/*.home-products-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
}*/

.home-products-3-inner {
    position: relative;
}

.home-products-3-ecollar {
    position: absolute;
    object-fit: cover;
    max-width: 200px;
    filter: drop-shadow(4px 4px 10px rgba(255, 255, 255, 0.7));
}

.home-products-3-ecollar-1 {
    top: -30px;
    left: 0;
}

.home-products-3-ecollar-2 {
    top: -50px;
    right: 0;
}

.home-products-3-ecollar-3 {
    bottom: -50px;
    right: 0;
}

/* Product card */

/* Product page */
.page-title {
    background: url(../img/slider/12.jpg) center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}

.page-title-inner {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ecollars-breadcrumb {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    margin-top: 20px;
    /*text-align: center;*/
}

.ecollars-breadcrumb h1 {
    margin-bottom: 10px;
}

.ecollars-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: all .3s;
}

.breadcrumb a:hover {
    color: var(--accent-dark);
}

.page-title a {
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}

.page-title a:hover {
    color: var(--accent-dark);
}

.section-product {
    padding-top: 0;
    padding-bottom: 0;
}

.post-block-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.post-block-card section {
    padding-top: 10px;
    padding-bottom: 10px;
}

.post-block-card .section-title {
    font-size: 25px;
}

.swiper-gallery {
    margin-bottom: 10px;
}

.swiper-gallery img {
    height: 615px;
    object-fit: contain;
    border-radius: 10px;
    margin: auto;
}

.swiper-gallery .swiper-slide {
    text-align: center;
}

.swiper-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity .5s;
}

.swiper-thumbs .swiper-slide-thumb-active,
.swiper-thumbs .swiper-slide:hover {
    opacity: 1;
}

.swiper-thumbs img {
    height: 150px;
    width: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-page-content .section-title {
    margin-bottom: 10px;
}

.product-page-price {
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 22px;
}

.product-page-price small {
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 16px;
}

input.qty {
    max-width: 70px;
    text-align: center;
    border: 1px solid #bbb;
}

.product-page-content input.qty:focus,
.product-page-content input.qty:focus-within,
.product-page-content input.qty:focus-visible {
    border: 1px solid var(--accent);
    outline: none;
}

.product-add2cart {
    display: flex;
    gap: 10px;
}

.product-add2cart .input-group {
    width: auto;
}

.product-main-desc-accordion .accordion-button:not(.collapsed) {
    background-color: #f6f7f9;
    box-shadow: none;
    border-bottom: 0;
}

.product-main-desc-accordion .accordion-button:focus {
    box-shadow: none;
}

.product-main-desc-accordion .accordion-button {
    color: var(--contrast);
    font-size: 20px;
    font-weight: 500;
}

.product-main-desc-accordion .accordion-item {
    background-color: #f6f7f9;
    border: 0;
}

.product-desc-tabs {
    border: 0;
}

.product-desc-tabs .nav-item:first-child .nav-link {
    margin-left: 0;
}

.product-desc-tabs .nav-item .nav-link {
    padding: 0;
    padding-bottom: 10px;
    margin-left: 50px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.product-desc-tabs .nav-link:focus,
.product-desc-tabs .nav-link:hover {
    border-color: transparent;
}

.product-desc-tabs .nav-link:focus-visible {
    box-shadow: none;
}

.product-desc-tabs .nav-item.show .nav-link,
.product-desc-tabs .nav-link.active {
    border-color: transparent;
    border-bottom: 3px solid var(--accent-dark);
}

.product-desc-tabs-content {
    padding-top: 25px;
}

.product-desc-tabs-content .table th {
    font-weight: 500;
}

.product-desc-tabs-content .table > :not(caption) > * > * {
    padding: 1rem .8rem;
}

.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5,
.tab-content h6 {
    color: #000;
}

/* Product page */

/* Footer */
footer.footer {
    background: #1b1b1b;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

footer.footer .header-subtitle {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

footer.footer .header-subtitle::after {
    background: var(--accent-dark);
}

footer.footer a {
    color: #fff;
    transition: all .3s;
    text-decoration: none;
}

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

.footer-icons {
    display: flex;
    gap: 10px;
}

.footer-icons i {
    font-size: 30px;
}

#top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    font-size: 25px;
    display: none;
    z-index: 10;
    transition: background-color .3s;
}

#top:hover {
    background-color: var(--contrast);
}

/* Footer */

.wooeshop-ordering p {
    margin-bottom: 0;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.woocommerce-pagination li .page-numbers {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--accent-dark);
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.woocommerce-pagination span.page-numbers {
    z-index: 3;
    color: #fff;
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.woocommerce-pagination a.page-numbers:hover {
    z-index: 2;
    color: var(--accent-dark);
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/*============================= Star Rating ============================*/
.wooeshop-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    margin-bottom: 10px;
}

@font-face {
    font-family:star;
    src:url(../fonts/star/star.eot);
    src:url(../fonts/star/star.woff) format("woff"),url(../fonts/star/star.ttf) format("truetype"),url(../fonts/star/star.svg#star) format("svg");
    font-weight:400;
    font-style:normal;
}

@font-face {
    font-family: WooCommerce;
    src: url(../fonts/star/WooCommerce.eot);
    src: url(../fonts/star/WooCommerce.eot?#iefix) format("embedded-opentype"), url(../fonts/star/WooCommerce.woff) format("woff"), url(../fonts/star/WooCommerce.ttf) format("truetype"), url(../fonts/star/WooCommerce.svg#WooCommerce) format("svg");
    font-weight: 400;
    font-style: normal;
}

.product-card-rating .star-rating,
.woocommerce-product-rating .star-rating,
.woocommerce-Reviews .star-rating {
    font-size: .857em;
}
.product-card-rating .star-rating,
.woocommerce-product-rating .star-rating,
.woocommerce-Reviews .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: star;
}
.product-card-rating .star-rating::before,
.woocommerce-product-rating .star-rating::before,
.woocommerce-Reviews .star-rating::before {
    content: "sssss";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}
.product-card-rating .star-rating span,
.woocommerce-product-rating .star-rating span,
.woocommerce-Reviews .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.product-card-rating .star-rating span::before,
.woocommerce-product-rating .star-rating span::before,
.woocommerce-Reviews .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
    color: #FFD333;
}
.woocommerce-product-rating {
    line-height: 2;
    display: block;
}
.woocommerce-product-rating::after,
.woocommerce-product-rating::before {
    content: " ";
    display: table;
}
.woocommerce-product-rating::after {
    clear: both;
}
.woocommerce-product-rating .star-rating {
    margin: .5em 4px 0 0;
    float: left;
}
.product-card-rating .star-rating {
    display: block;
    float: none;
    margin: auto;
}
.hreview-aggregate .star-rating {
    margin: 10px 0 0;
}

/* comments */
.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    color: var(--accent);
}

.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: WooCommerce;
    content: "\e021";
    text-indent: 0;
}

.woocommerce p.stars a:hover ~ a::before {
    content: "\e021";
}

.woocommerce p.stars:hover a::before {
    content: "\e020";
    color: var(--accent);
}

.woocommerce p.stars.selected a.active::before {
    content: "\e020";
    color: var(--accent);
}

.woocommerce p.stars.selected a.active ~ a::before {
    content: "\e021";
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: "\e020";
    color: var(--accent);
}

.product-review {
    margin-bottom: 20px;
}

.product-review-header {
    display: flex;
    justify-content: space-between;
}

.product-review-header .review-date {
    color: var(--text);
}

.product-review-header .avatar {
    max-height: 60px;
}

.product-review .card-text {
    margin-top: 20px;
}

.comment-author-rating {
    text-align: right;
}

.comment-author-rating .meta {
    margin-bottom: 5px;
}
/*============================= Star Rating ============================*/

.blog-post-card {
    display: flex;
    margin-bottom: 40px;
    margin-top: 40px;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.blog-post-card-thumbnail {
    max-width: 30%;
}

.blog-post-card-about {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.blog-post-card-about .section-title {
    margin-bottom: 0;
}

.section-title a {
    text-decoration: none;
    color: #000;
    transition: all .3s;
}

.section-title a:hover {
    color: var(--accent-dark);
}

.blog-post-card-read-more {
    text-decoration: none;
    color: var(--contrast);
    transition: all .3s;
}

.blog-post-card-read-more:hover {
    color: var(--accent-dark);
}

.blog-post-thumbnail {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-page-content .onsale {
    background: var(--accent);
    color: var(--contrast);
    padding: 5px 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.product-page-content .price {
    text-align: left;
}

.product-page-content .price > del > span {
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 16px;
}

.product-page-content .cart {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-page-content .variations_form.cart,
.product-page-content .grouped_form.cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-page-content .grouped_form.cart a {
    color: var(--contrast);
    transition: all .3s;
}

.product-page-content .grouped_form.cart a:hover {
    color: var(--accent-dark);
}

.woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce-grouped-product-list .input-group,
.woocommerce-cart-form .input-group {
    flex-wrap: nowrap;
}

.variations.table {
    margin-bottom: 0;
}

.woocommerce-message {
    background: var(--accent);
    padding: 10px;
    margin-bottom: 10px;
}

.woocommerce-error {
    list-style: none;
    padding: 10px;
    margin-bottom: 10px;
    background: #ee6e73;
    color: #fff;
}

.product_meta {
    margin-bottom: 10px;
}

.product_meta > span {
    display: block;
}

.product_meta a {
    color: var(--contrast);
    transition: all .3s;
}

.product_meta a:hover {
    color: var(--accent-dark);
}

.woocommerce-cart-form img {
    max-width: 50px;
}

.woocommerce-cart-form a {
    text-decoration: none;
}

.coupon-error-notice {
    margin-bottom: 0;
    color: #ee6e73;
}

.cart-collaterals td {
    text-align: right;
}

.shop_table ul {
    list-style: none;
    padding-left: 0;
}

.shop_table ul input {
    margin-left: 5px;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.woocommerce-billing-fields__field-wrapper p,
.woocommerce-additional-fields__field-wrapper p,
.woocommerce-shipping-fields__field-wrapper p {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    flex-direction: column;
}

.woocommerce-checkout p .input-text,
.woocommerce-address-fields p .input-text {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.woocommerce-checkout p .input-text:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ffefb3;
    outline: 0;
    box-shadow: none;
}

.woocommerce-checkout p .select2-container--default .select2-selection--single,
.woocommerce-address-fields p .select2-container--default .select2-selection--single {
    border-radius: 0;
}

.woocommerce-checkout p .select2-container .select2-selection--single,
.woocommerce-address-fields p .select2-container .select2-selection--single {
    height: 38px;
}

.woocommerce-checkout p .select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-address-fields p .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 4px;
}

.woocommerce-checkout p .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce-address-fields p .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.woocommerce-additional-fields__field-wrapper p {
    flex: 100%;
    max-width: 100%;
}

.woocommerce-checkout textarea {
    min-height: 100px;
}

.checkout-inline-error-message {
    max-width: 100% !important;
    color: #ee6e73;
    padding-left: 0 !important;
}

.password-input {
    position: relative;
}

.woocommerce-form-row .password-input {
    display: block;
}

.woocommerce-form-row .show-password-input {
    top: 5px;
}

.show-password-input {
    position: absolute;
    right: 5px;
    top: 37px;
    background: transparent;
    border: 0;
}

.show-password-input::before {
    content: "\F341";
    font-family: "bootstrap-icons";
}

.show-password-input.display-password::before {
    content: "\F340";
    font-family: "bootstrap-icons";
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding-left: 0;
}

.woocommerce-product-details__short-description {
    color: #000;
}

.available-on-backorder {
    color: var(--accent-dark);
}

.dialog-lightbox-widget {
    display: none !important;
}

@media all and (min-width: 1200px) {
    .main-menu.navbar-nav .nav-link {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media all and (min-width: 992px) {
    .ecollars-navbar .dropdown-menu {
        transform: translateY(10px);
        transition: all .3s;
        opacity: 0;
        display: block;
        visibility: hidden;
        transition-delay: .2s;
        right: 0;
        left: auto;
    }

    .ecollars-navbar .dropdown:hover > .dropdown-menu {
        display: block;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .catalog-menu > li > .dropdown-toggle {
        pointer-events: none;
    }

    .catalog-menu > li > .dropdown-toggle::after {
        display: none;
    }

    .swiper-home-slider img {
        height: 417px;
    }
}

@media all and (max-width: 992px) {

    .top-line {
        justify-content: center;
    }

    .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .catalog-menu {
        margin-bottom: 10px;
    }

    .catalog-menu .dropdown-menu-end {
        position: static !important;
        transform: none !important;
    }

    .anti-barking img {
        margin-bottom: 20px;
    }

    .home-products-3 {
        background-attachment: scroll;
    }

    .blog-post-card {
        flex-direction: column;
    }

    .blog-post-card-thumbnail {
        max-width: 100%;
    }
}

@media all and (max-width: 781px) {
    body.admin-bar header.header {
        top: 46px;
    }
}

@media all and (max-width: 768px) {

    .swiper-gallery img {
        height: 350px;
    }

    .swiper-text {
        font-size: 16px;
    }

    .swiper-thumbs img {
        height: 75px;
        width: 100px;
    }

    #wpadminbar {
        position: fixed;
    }

    .woocommerce-cart-form .shop_table thead {
        display: none;
    }

    .woocommerce-cart-form .shop_table td {
        display: block;
        text-align: right;
    }

    .woocommerce-cart-form .shop_table td .quantity {
        justify-content: end;
        width: auto;
    }

    .woocommerce-cart-form .shop_table td::before {
        content: attr(data-title);
        float: left;
        font-weight: 700;
    }

    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-additional-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        flex-direction: column;
    }

    .woocommerce-billing-fields__field-wrapper p,
    .woocommerce-additional-fields__field-wrapper p,
    .woocommerce-shipping-fields__field-wrapper p {
        max-width: 100%;
    }
}

@media all and (max-width: 400px) {
    .header-logo {
        width: 150px;
    }
}
