/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/
/* Обновленные стили для Genevawatch */
.subscription-wrapper {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #1A1A1A;
    border: 1px solid #2D2D2D;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.subscription-message {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 2px;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.subscription-message.success {
    background: #2A2A2A;
    color: #B89F65;
    border-color: #B89F65;
}

.subscription-message.error {
    background: #2A2A2A;
    color: #C64F47;
    border-color: #C64F47;
}

.subscription-form input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    background: #2A2A2A;
    border: 1px solid #3D3D3D;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.subscription-form input[type="email"]:focus {
    border-color: #B89F65;
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 159, 101, 0.2);
}

.subscription-button {
    background: #B89F65;
    color: #1A1A1A;
    padding: 14px 30px;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.subscription-button:hover {
    background: #1A1A1A;
    color: #B89F65;
    border-color: #B89F65;
}

.subscription-categories {
    border-top: 1px solid #2D2D2D;
    padding-top: 20px;
    margin: 20px 0;
}

.subscription-categories h4 {
    color: #B89F65;
    font-size: 13px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.category-checkbox {
    color: #FFF;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.category-checkbox input[type="checkbox"] {
    accent-color: #B89F65;
}

#unsubscribe-wrapper {
    margin: 25px 0 15px;
    padding: 15px;
    background: #2A2A2A;
    border-radius: 2px;
}

#unsubscribe-wrapper label {
    color: #FFF;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .subscription-wrapper {
        margin: 20px 15px;
        padding: 25px;
    }
    
    .subscription-button {
        width: 100%;
    }
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.2s;
}

.dropdown-menu1.show .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-breadcrumbs .dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    min-width: 15em;
    width: 100%;
    left: auto;
    right: auto;
    translate: 0% 10px;
}

@media (max-width: 600px) {
.custom-breadcrumbs .dropdown-menu {
    display: none;
    position: fixed;
    z-index: 1000;
    min-width: 15em;
    width: auto;
    left: 20px;
    right: 20px;
    bottom: auto;
    top: auto;
    translate: none;
}
}
.custom-breadcrumbs  .dropdown-menu ul {
    list-style: none;
    margin-left: 0;
    overflow-y: auto;
    max-height: 40vh;
}
.dropdown-menu1.show {
    display: block;
}

.dropdown-group {
    margin-bottom: 10px;
}

.group-title {
    font-weight: bold;
    padding: 5px 10px;
    color: #666;
}

.dropdown-item a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-item:hover a {
    background: #f5f5f5;
}

.count {
    font-size: 0.9em;
    color: #999;
    margin-left: 5px;
}
/* Основные стили */
.attribute-name {
    font-size: 16px;
    font-weight: 800;
    position: sticky;
    left: 0%;
    background: #fafafa!important;
}

.compare-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.compare-title {
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.compare-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.compare-clear-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.compare-clear-btn:hover {
    background: #ff6b81;
    transform: translateY(-1px);
}


.compare-scroll-wrapper {
  overflow-x: auto;
 
  cursor: grab; /* Курсор "захвата" по умолчанию */
  user-select: none; /* Предотвращает выделение текста */
  scrollbar-width: none; /* Скрыть скроллбар в Firefox */
  -ms-overflow-style: none; /* Скрыть скроллбар в IE/Edge */
  padding-bottom: 1rem;
}

.compare-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Скрыть скроллбар в Chrome/Safari */
}

.compare-scroll-wrapper:active {
  cursor: grabbing; /* Курсор при перетаскивании */
}





.compare-table {
    font-size: 16px;
    width: auto;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 400px;
}

.compare-table th {
    background: #ffffff;
    padding: 1.2rem;
    text-align: left;
    font-weight: 500;
    color: #3d3d3d;
    position: relative;
    border-bottom: 2px solid #eee;
}

.compare-table td {
    max-width: 200px;
    padding: 0.6rem;
    background: #fff;
    border-left: 1px solid #f5f5f5;
    border-bottom: 1px dashed #f5f5f5;
    transition: background 0.2s ease;
}

/* Стили для карточек товаров */
.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    border: 1px solid #eee;
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 0.5rem;
}

.product-price {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Кнопка удаления */
.remove-item {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #ff7675;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .compare-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .compare-title {
        font-size: 1.5rem;
    }
    
    .product-image {
        width: 80px;
        height: 80px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.compare-table tr {
    animation: fadeIn 0.4s ease forwards;
}
.compare-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s;
}

.compare-icon.active {
    color: #ff0000;
}

#compare-list {
    margin: 20px 0;
}

.compare-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.remove-item:hover {
    color: #ff0000;
}

#clear-compare {
    margin-left: 15px;
    padding: 5px 10px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}







#wishlist-counter,.compare-counter {
    display: flex;
    position: absolute;
    right: -8px;
    top: -4px;
    font-size: 12px;
    background: #f0f8ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.heart { color: #ccc; cursor: pointer; }
.heart.active { color: red; }
#wishlist-counter { margin-left: 5px; }
.rv-product {
    display: flex;
    flex-direction: column;
    position: relative;
}
.tile__price {

    position: relative;
}
.recently-viewed-wrapper {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #eee;
}

.rv-products-list {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.rv-product img {

    margin-bottom: 10px;
}

.rv-product h4 {
    font-size: 14px;
    margin: 0;
}
.grey-background::after {
    bottom: 0;
    content: "";
    left: 0;
    opacity: .02;
    background: black;
    position: absolute;
    right: 0;
    top: 0;
}


.dropdown .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    border: 1px solid rgb(0 0 0) !important;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;

    padding: .15rem .75rem;
  
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.collapsing, .dropdown, .dropup {
    position: relative;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    line-height: 1.42857143;
    white-space: nowrap;
}
.b-btn .caret {
    margin-left: 8px;
}
.btn .caret, .btn-group>.btn:first-child {
    margin-left: 0;    height: auto;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    margin-right: 4px;
    border-top: 6px solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}
.b-dropdown-menu{
    margin:0;
    padding:0;
    width:auto
    
}
.b-dropdown-menu:before{content:'';position:absolute;top:-8px;left:50%;margin-left:-4px;display:inline-block;width:0;height:0;vertical-align:middle;border-bottom:8px solid 9;color:#fff;border-right:8px solid transparent;border-left:8px solid transparent}
.b-dropdown-menu li{    margin: 0 0 0rem;padding:0}
.b-dropdown-menu li a{
    color: black;
    transition:all .2s ease;
    border-bottom:1px solid #b7b7b7;
    padding:.5rem 27px;
    font-size: 16px;
}
.b-dropdown-menu li:last-child a{border-bottom:none}
.b-dropdown-menu li:hover a{background-color:#2f2f2f;color:#fff!important}
.dropdown-menu{display:block;-webkit-transform:translateY(-10px);transform:translateY(-10px);opacity:0;transition:transform .3s ease,opacity .3s ease;transition:transform .3s ease,opacity .3s ease,-webkit-transform .3s ease;pointer-events:none;will-change:transform}
.open>.dropdown-menu{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;pointer-events:auto}
.open>.dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    left: 50%;
    top: 100%;
    translate: -50% 10px;
    z-index: 1;
    margin: -1px 0 0 0;
    box-sizing: border-box;
    border: solid 1px #000000;
    background-color: #fff;
    transform-origin: center top;
    transition: transform .2s, opacity .2s;

    transform: scaleY(0);
    
}
.dropdown-toggle::after {
    content: "";
    position: relative;
    transform: rotate(45deg);
    margin: -3px 0 0;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    right: -5px;
    top: 50%;
    padding: 3px;
    transition: transform .2s, margin .2s;
}
.open .dropdown-toggle::after {
    transform: rotate(-135deg);
    margin: 3px 0 0;
    top: 45%;
}


.js-currency, .js-phone-city {
   background: transparent;
    font-size: 16px;
    color: #000000;
}

.icsvg {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.fancybox-slide--html .fancybox-close-small {

    top: 40px;
}
.fancybox-button {
    height: 74px;
    width: 74px;
}

.watch-tile__price {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 14px
}

.watch-tile__price .change100 {
    flex: auto;
    order: 3;
    white-space: nowrap;
    width: 100%;
    font-size: 20px;
    font-weight: 800;
    margin-top: -10px
}

.filter-horizontal__currency a.active,.filter-horizontal__currency a:hover {
    text-decoration: underline;
    font-weight: 900!important
}

.filter-horizontal__currency {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px
}

.filter-horizontal__currency a {
    margin: 0 0 0 10px;
    color: #080808;
    text-transform: uppercase
}
.watch-tile_2 {
    display: flex;
    margin-left: auto;
    margin-right: auto !important;
    position: relative !important;
    z-index: 3 !important;
    justify-content: center;
    align-items: center;
}
.watch-tile_2 .watch-tile__price:hover {
    position: absolute;
    top: -10px;
    z-index: 999999;
    background: #fff;
    left: inherit;
    right: initial;
    margin-left: 5px;
    width: max-content;
    white-space: nowrap;
    padding: 10px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .1), 0 .1rem .3rem rgba(0, 0, 0, .1);
}
.watch-tile__price-val {
    font-weight: 700!important;
    font-size: 1.2rem!important;
    position: relative!important
}

.watch-tile__price-val .fas {
    font-weight: 700!important;
    font-size: 1.1rem!important;
    position: relative!important
}
.watch-tile {
    min-height: 28.8px;
    margin: auto;
    width: 100%;
    position: relative;
    line-height: unset;
    margin-bottom: 0!important;
    z-index: 1
}

.watch-tile__price {
    position: relative;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: min-content;
    justify-content: center;
    gap: 0;
    font-size: 14px;
    overflow: hidden;
   
    white-space: nowrap
}

.watch-tile__price-val:not(.hidden) {
    order: -1
}

.watch-tile__price:hover {
    position: absolute;
    top: -10px;
    z-index: 999999;
    background: #fff;
    left: 0;
    right: 0;
    margin-left: -10px;
    width: max-content;
    white-space: nowrap;
    padding: 10px;
    box-shadow: 0 0 0 0 rgba(0,0,0,.1) , 0 .1rem .3rem rgba(0,0,0,.1)
}

.watch-tile__price:hover div.watch-tile__price-val.hidden {
    display: block!important;
    top: 0%;
    z-index: 999999;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    font-size: 14px!important;
    line-height: 1.2
}
.afwl-star a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.afwl-star i {
    font-size: 22px
}

.afwl-star a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

.afwl-count {
    display: flex;
    position: absolute;
    right: -8px;
    top: -4px;
    font-size: 12px;
    background: #f0f8ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center
}
.afwl-button .g-preloader {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 100%;
    width: 1em;
    height: 1em;
    color: var(--color-content-primary);
}
.filter-horizontal__currency a.active,.filter-horizontal__currency a:hover {
    text-decoration: underline;
    font-weight: 900!important
}

.filter-horizontal__currency {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px
}

.filter-horizontal__currency a {
    margin: 0 0 0 10px;
    color: #080808;
    text-transform: uppercase
}


.newgoods .w-post-elm.has_ratio img {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 32px) !important;
    height: calc(100% - 32px);
    object-fit: contain !important;
    inset: 1rem;

}
.newgoods .post_image.usg_post_image_1::after {
      bottom: 0;
    content: "";
    left: 0;
    opacity: .02;
    background: black;
    position: absolute;
    right: 0;
    top: 0;  
}   
.watchmakers-brands__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem 2rem
}

.watchmakers-brands__word {
    display: flex;
    align-items: center
}

.watchmakers-brands__word:before {
    content: ""
}

.watchmakers-brands__word:after {
    content: "";
    position: relative;
    flex: 1;
    margin-right: 1rem;
    border-bottom: 1px solid #dadada;
    margin-left: 2rem;
    bottom: -10px
}

.mt-16 {
    margin-top: 1rem!important;
    padding: 0 20px 20px;
    font-size: 16px;
    z-index: 3;
    position: relative
}

.watchmakers-brands__item {
    position: relative;
    background: #fff;
    box-shadow: 0px 2px 9px rgba(216,218,221,.173569);
    border-radius: 7px
}

.watchmakers-brands__item:before {
    display: block;
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    border: 1px solid rgba(235,235,235,.7);
    border-radius: inherit;
    z-index: 2
}

.watchmakers-brands__word b {
    line-height: 35px;
    background: #e6e6e6;
    font-size: 20px;
    height: 35px;
    width: 35px;
    text-align: center;
    z-index: 2
}
@media screen and (max-width: 768px) {
    .watchmakers-services__list,.watchmakers-brands__list {
        grid-template-columns:1fr 1fr!important
    }
}
@media screen and (max-width: 640px) {
    .watchmakers-services__list, .watchmakers-howprice__cols, .watchmakers-brands__list {
        grid-template-columns: 1fr !important;
    }
}
