/* WooCommerce Custom Styles */

/* Product Archive Grid - Force 4 columns */
.woocommerce-page .wrap-goods-list.is-grid .products {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 20px;
    width: 100%;
}

.woocommerce-page .wrap-goods-list.is-grid .products .product {
    margin: 0 !important;
    padding: 0 !important;
    width: calc(25% - 7.5px) !important;
    flex: 0 0 calc(25% - 7.5px) !important;
    min-height: 368px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    background: #effffe !important;
    border: 1px solid #d6ecf0 !important;
    color: #101010 !important;
    box-sizing: border-box !important;
}

.woocommerce-page .products .product:hover {
    text-decoration: none;
}

/* Product Images */
.woocommerce-page .products .product .goods-list__wrap-img {
    width: 100%;
    height: 170px;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.woocommerce-page .products .product .goods-list__img {
    max-width: 172px;
    margin: auto;
}

.woocommerce-page .products .product .goods-list__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px 24px;
    min-height: 57px;
    background: #00f0ff;
    font-weight: 600;
    font-size: 14px;
    font-family: "InterTight", sans-serif;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    color: #101010;
}

.woocommerce-page .products .product.is-preorder .goods-list__tag {
    background: #000;
    color: #fff;
}

.woocommerce-page .products .product.is-sold .goods-list__tag {
    background: #dc3545;
    color: #fff;
}

.woocommerce-page .products .product .goods-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 20px;
    height: calc(100% - 170px);
}

.woocommerce-page .products .product .goods-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin: 0 0 20px 0;
    color: inherit;
}

.woocommerce-page .products .product .goods-list__price {
    margin: auto 0 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.woocommerce-page .products .product .goods-list__iva {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 12px;
}

.woocommerce-page .products .product .goods-list-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0 0;
}

.woocommerce-page .products .product .goods-list-actions__btn {
    width: 134px;
    max-width: 100%;
    height: 49px;
    padding: 6px 14px;
    background: #00f0ff;
    color: #101010;
    border: none;
    border-radius: 10000px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 57px;
    font-family: "InterTight", sans-serif;
}

.woocommerce-page .products .product .goods-list-actions__btn:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #101010;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .woocommerce-page .wrap-goods-list.is-grid .products .product {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .woocommerce-page .wrap-goods-list.is-grid .products .product {
        width: calc(50% - 5px) !important;
        flex: 0 0 calc(50% - 5px) !important;
    }
}

@media (min-width: 767px) and (max-width: 1100px) {
    .woocommerce-page .wrap-goods-list.is-grid .products .product {
        width: calc(33.3333% - 5.35px) !important;
        flex: 0 0 calc(33.3333% - 5.35px) !important;
    }
}

@media (min-width: 1100px) {
    .woocommerce-page .wrap-goods-list.is-grid .products .product {
        width: calc(25% - 7.5px) !important;
        flex: 0 0 calc(25% - 7.5px) !important;
    }
    
    .goods-list__wrap-img {
        height: 258px;
        padding: 40px 30px 25px;
    }
}

/* Sidebar styles */
.goods__sidebar {
    background: transparent;
}

.filters-list__link:hover,
.filters-list__item.is-current .filters-list__link {
    color: #000000;
}

.woocommerce-breadcrumb {
    padding-bottom: 25px;
}

/* Custom sorting dropdown */
.woocommerce .woocommerce-ordering,
#woocommerce-ordering.woocommerce-ordering,
.sort .woocommerce-ordering {
    display: block !important;
}

/* Custom sorting dropdown - design like "Ordinamento: Automatico" */
.sort-wrapper {
    position: relative;
    margin: 0 0 0 auto;
}

.sort-wrapper .woocommerce-ordering {
    margin: 0;
    padding: 0;
}

.sort-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 1px solid #101010;
    padding-bottom: 12px;
    padding-right: 20px;
    min-width: 200px;
}

.sort-label {
    display: inline-block;
    color: #000;
    font-weight: 600;
    white-space: nowrap;
}

.sort-value {
    font-weight: 600;
}

.sort-select .orderby {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sort-select::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
    pointer-events: none;
    margin-top: 2px;
}

.sort-select:hover {
    opacity: 0.8;
}

.sort {
    position: relative;
}

.sort .select {
    width: calc(100% - 92px);
    position: static;
}

.sort .select__option {
    padding: 12px 21px 12px 40px;
}

.sort .select__option--selected,
.sort .select__option:hover {
    background: none;
    color: inherit;
    text-decoration: underline;
}

.sort .select__option--value {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px 12px 0;
    height: auto;
    background: none;
    border: 0;
    border-bottom: 1px solid #101010;
    color: inherit;
    white-space: nowrap;
    cursor: pointer;
}

.sort .select__option--value::after {
    width: 14px;
    height: 20px;
}

.sort .select__option--value:hover {
    text-decoration: none;
}

.sort .select__dropdown {
    top: calc(100% + 4px);
    background: #101010;
    padding: 12px 0;
    margin: 0;
    color: #fff;
    z-index: 3;
    border: 0;
}

/* ULTRA AGGRESSIVE 4 COLUMNS FIX */
body.woocommerce-page .products,
body.woocommerce-page .wrap-goods-list.is-grid .products,
.woocommerce-page .products,
.woocommerce-page .wrap-goods-list.is-grid .products {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

body.woocommerce-page .products .product,
body.woocommerce-page .wrap-goods-list.is-grid .products .product,
.woocommerce-page .products .product,
.woocommerce-page .wrap-goods-list.is-grid .products .product {
    width: calc(25% - 7.5px) !important;
    flex: 0 0 calc(25% - 7.5px) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    background: #effffe !important;
    border: 1px solid #d6ecf0 !important;
    color: #101010 !important;
    box-sizing: border-box !important;
    min-height: 368px !important;
    max-width: calc(25% - 7.5px) !important;
}

/* Custom Pagination Styles */
.pagination {
    margin: 20px 0 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination__item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(16,16,16,.4);
    font-weight: 600;
    font-size: 14px;
    color: rgba(16,16,16,.4);
}

.pagination__item--current,
.pagination__item:hover {
    color: #101010;
    border: 1px solid #101010;
}

.pagination__item--prev {
    transform: rotate(180deg);
}

.pagination__item--prev,
.pagination__item--next {
    background: #00f0ff;
    border-radius: 50%;
    border-color: #00f0ff;
    color: #101010;
}

.pagination__item--prev:hover,
.pagination__item--next:hover {
    border-color: #00f0ff;
    opacity: .9;
}

.pagination__item--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination__item--disabled:hover {
    opacity: 0.5;
    border-color: rgba(16,16,16,.4);
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: inherit;
    padding: 4px;
    text-decoration: none;
}

.pagination__link:hover {
    text-decoration: none;
    color: inherit;
}

.pagination__item--dots .pagination__link {
    cursor: default;
}

/* Single Product Page Styles - Exact match to static version */
.wrap--good {
    padding: 40px 0;
}

.good-top-bar {
    margin: 0 0 30px 0;
}

.good-top-bar__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    color: #192653;
    margin: 20px 0 0 0;
}

/* Good top bar inside good__right */
.good__right .good-top-bar {
    margin: 0 0 20px 0;
}

.good__right .good-top-bar__title {
    font-size: 24px;
    margin: 12px 0 0 0;
}

.good {
    display: flex;
    gap: 30px;
    margin: 0 0 60px 0;
}

.good__left {
    flex: 522px 0 0;
    margin: 0 0 30px 0;
}

.good__right {
    flex: 1;
}

/* Product Gallery - Exact match to static version */
.good-slider {
    margin: 0 0 20px 0;
    position: relative;
}

.good-slider__wrap {
    border-radius: 8px;
    overflow: hidden;
}

.good-slider__item {
    text-align: center;
}

.good-slider__img {
    width: 100%;
    height: auto;
    display: block;
}

.good .swiper-button-prev,
.good .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    font-size: 14px;
    background: #00f0ff;
    border-radius: 50%;
    color: #101010;
    z-index: 100;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    margin-top: 0;
}

.good .swiper-button-prev::after,
.good .swiper-button-next::after {
    content: "";
    font-family: 'icons' !important;
    font-size: 20px;
    font-weight: normal;
    color: #101010;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.good .swiper-button-prev {
    left: 20px;
}

.good .swiper-button-prev::after {
    content: "\e901"; /* icon-arrow2 rotated or use arrow icon */
}

.good .swiper-button-next {
    right: 20px;
}

.good .swiper-button-next::after {
    content: "\e901"; /* icon-arrow2 */
}

.good .swiper-button-prev:hover,
.good .swiper-button-next:hover {
    opacity: 0.8;
}

/* Thumbnails - Exact match to static version */
.wrap-good-thumbs {
    margin: 0 0 30px 0;
    overflow: hidden;
}

.good-thumbs.swiper {
    overflow: visible;
}

.good-thumbs__wrap {
    display: flex;
    gap: 10px;
}

.good-thumbs__item {
    width: 80px !important;
    height: 80px;
    min-width: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.good-thumbs__item:hover,
.good-thumbs__item.swiper-slide-thumb-active {
    border-color: #00f0ff;
}

.good-thumbs__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
}

/* Product Info - Exact match to static version */
.good-type {
    margin: 0 0 20px 0;
}

.good-type__title {
    margin: 0 0 12px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #192653;
}

.good-type .select {
    width: 200px;
    max-width: 100%;
}

.good-type .select__option--value {
    color: #101010;
}

.good-price {
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.good-price__data {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    white-space: nowrap;
    color: #192653;
}

.good-price__iva {
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 12px;
    color: #666;
}

/* Quantity Controls - Exact match to static version */
.numbs {
    width: 96px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.numbs__btn {
    flex: 1;
    border: 1px solid #d2d2d2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 6px;
    color: #101010;
}

.numbs__btn--minus {
    border-radius: 4px 0px 0px 4px;
}

.numbs__btn--plus {
    border-radius: 0px 4px 4px 0px;
}

.numbs__btn:hover {
    background: #f8f9fa;
}

.numbs__value {
    flex: 1;
    height: 32px;
    text-align: center;
    padding: 0;
    border: 1px solid #d2d2d2;
    margin: 0 -1px;
    font-weight: 600;
    background: #fff;
    font-size: 16px;
    color: #101010;
}

/* Actions - Exact match to static version */
.good-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 24px 0;
}

.good-actions__item {
    margin: 0;
}

.good-actions__btn {
    flex: 1;
    min-width: 57px;
    height: 57px;
    border-radius: 10000px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 0;
    font-family: "InterTight", sans-serif;
    color: #101010;
}

.good-actions__btn.btn {
    background: #00f0ff;
    color: #101010;
    border: none;
}

.good-actions__btn.btn--border {
    background: transparent;
    color: #192653;
    border: 1px solid #192653;
}

.good-actions__btn:hover {
    opacity: 0.9;
    text-decoration: none;
}

.good-actions__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Note - Exact match to static version */
.good-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px 0;
    padding: 20px 24px;
    background: #efffa6;
    border-radius: 20px;
    font-size: 14px;
    line-height: 17px;
    color: #101010;
}

.good-note b,
.good-note strong {
    font-weight: 600;
}

.good-note__img {
    flex: 24px 0 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.good-note__txt {
    flex: 1;
}

.good-note__txt p {
    margin: 0;
}

/* Description - Exact match to static version */
.good-desc {
    font-size: 15px;
    line-height: 160%;
    color: #03141b;
    margin: 0 0 24px 0;
}

.good-desc p {
    margin: 0 0 16px 0;
}

.good-desc p:last-child {
    margin: 0;
}

/* Configuration - Exact match to static version */
.good-config {
    padding: 40px 20px;
    background: #d6ecf0;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: -0.05em;
    color: #03141b;
    margin: 0 0 30px 0;
}

.good-config__title {
    margin: 0 0 32px 0;
    font-weight: 600;
    font-size: 24px;
    color: #101010;
}

.good-config__content {
    margin: 0;
}

.good-config__link {
    margin: 44px 0 0;
    display: inline-flex;
    gap: 12px;
    padding: 0 0 12px 0;
    font-family: "InterTight", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #101010;
    border-bottom: 1px solid #101010;
    text-decoration: none;
}

.good-config__link:hover {
    text-decoration: none;
}

/* Related Products - Exact match to static version */
.wrap--related {
    background: #000;
    padding: 60px 0;
}

.wrap--dark .title__data {
    color: #fff;
    font-size: 40px;
}

.is-related .goods-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.is-related .goods-list__item {
    flex: 0 0 247px;
    width: 247px;
    min-height: 393px;
    background: #effffe;
    border: 1px solid #d6ecf0;
    color: #101010;
}

.is-related .goods-list__item:hover {
    text-decoration: none;
}

.is-related .goods-list__wrap-img {
    width: 100%;
    height: 220px;
    position: relative;
    padding: 20px;
    color: inherit;
}

.is-related .goods-list__img {
    max-width: 172px;
    margin: 30px auto 0;
}

.is-related .goods-list__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px 24px;
    min-height: 57px;
    background: #00f0ff;
    font-weight: 600;
    font-size: 14px;
    font-family: "InterTight", sans-serif;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    color: #101010;
    white-space: nowrap;
}

.is-related .goods-list__item.is-preorder .goods-list__tag {
    background: #000;
    color: #fff;
}

.is-related .goods-list__item.is-sold .goods-list__tag {
    background: #dc3545;
    color: #fff;
}

.is-related .goods-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 20px;
    height: calc(100% - 220px);
}

.is-related .goods-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin: 0 0 20px 0;
    color: inherit;
}

.is-related .goods-list__price {
    margin: auto 0 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.is-related .goods-list__iva {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 12px;
}

.is-related .goods-list-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0 0;
}

.is-related .goods-list-actions__btn {
    width: 134px;
    max-width: 100%;
    height: 49px;
    padding: 6px 14px;
    background: #00f0ff;
    color: #101010;
    border: none;
    border-radius: 10000px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 57px;
    font-family: "InterTight", sans-serif;
}

.is-related .goods-list-actions__btn:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #101010;
}

/* Responsive - Exact match to static version */
@media (max-width: 768px) {
    .good {
        flex-direction: column;
        gap: 20px;
    }
    
    .good__left {
        flex: none;
        margin: 0;
    }
    
    .good__right .good-top-bar__title {
        font-size: 20px;
    }
    
    .good-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .good-thumbs__item {
        width: 60px;
        height: 60px;
    }
    
    .is-related .goods-list__item {
        width: 260px;
        min-height: 368px;
    }
    
    .is-related .goods-list__wrap-img {
        height: 170px;
    }
    
    .is-related .goods-list__content {
        height: calc(100% - 170px);
    }
}

/* Related products navigation buttons */
.wrap-goods-list.is-related .swiper-button-prev,
.wrap-goods-list.is-related .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    font-size: 14px;
    background: #00f0ff;
    border-radius: 50%;
    color: #101010;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.wrap-goods-list.is-related .swiper-button-prev::after,
.wrap-goods-list.is-related .swiper-button-next::after {
    content: " ";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrap-goods-list.is-related .swiper-button-prev {
    left: -27px;
}

.wrap-goods-list.is-related .swiper-button-prev::after {
    transform: rotate(180deg);
}

.wrap-goods-list.is-related .swiper-button-next {
    right: -27px;
}

.wrap-goods-list.is-related .swiper-button-prev:hover,
.wrap-goods-list.is-related .swiper-button-next:hover {
    opacity: 0.8;
}

/* Cart Page Styles - Exact match to static checkout.html */
.wrap--checkout {
    padding: 40px 0;
}

.wrap-checkout {
    max-width: 100%;
}

.checkout {
    margin: 0 0 40px 0;
}

.checkout__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #effffe;
    border: 1px solid #d6ecf0;
    border-radius: 8px;
    margin: 0 0 20px 0;
}

.checkout__item.is-sold {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.checkout__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.checkout__img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout__data {
    flex: 1;
}

.checkout__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #192653;
    text-decoration: none;
    margin: 0 0 8px 0;
    display: block;
}

.checkout__title:hover {
    text-decoration: none;
    color: #00f0ff;
}

.checkout__status {
    display: block;
    width: 80px;
    padding: 5px 12px;
    color: #101010;
    font-size: 12px;
    height: 31px;
    font-family: "HostGrotesk", sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid #000000;
}

.checkout__item.is-preorder .checkout__status {
    background: #00f0ff;
    color: #000000;
    border: none;
}

.checkout__item.is-sold .checkout__status {
    background: #dc3545;
    color: #fff;
}

.checkout__right {
    flex-shrink: 0;
}

.checkout-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.checkout-actions__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.checkout-actions__price {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #192653;
}

.checkout-actions__price.is-hidden {
    display: none;
}

.checkout-actions__iva {
    font-size: 10px;
    line-height: 12px;
    color: #666;
}

/* Preorder price styling - crossed out and gray */
.checkout__item.is-preorder .checkout-actions__price {
    text-decoration: line-through;
    color: rgba(16, 16, 16, 0.4);
    font-size: 24px;
}

.checkout__item.is-preorder .checkout-actions__price * {
    text-decoration: none;
    color: rgba(16, 16, 16, 0.4);
}

/* IVA для preorder показывается только если не Италия (управляется через PHP) */

/* Empty total for preorder-only carts */
.pay-details__total:empty {
    min-height: 0;
}

/* Quantity controls in cart */
.checkout .numbs {
    width: 96px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.checkout .numbs__btn {
    flex: 1;
    border: 1px solid #d2d2d2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 6px;
    color: #101010;
    border-radius: 0;
}

.checkout .numbs__btn--minus {
    border-radius: 4px 0px 0px 4px;
}

.checkout .numbs__btn--plus {
    border-radius: 0px 4px 4px 0px;
}

.checkout .numbs__btn:hover {
    background: #f8f9fa;
}

.checkout .numbs__value {
    flex: 1;
    height: 32px;
    text-align: center;
    padding: 0;
    border: 1px solid #d2d2d2;
    margin: 0 -1px;
    font-weight: 600;
    background: #fff;
    font-size: 16px;
    color: #101010;
}

.quantity-display {
    font-weight: 600;
    font-size: 14px;
    color: #192653;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    display: inline-block;
}

/* Remove button */
.checkout-actions__btn.btn-remove {
    background: transparent;
    color: #101010;
    border: none;
    border-bottom: 1px solid #101010;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.checkout-actions__btn.btn-remove:hover {
    background: transparent;
    color: #101010;
    text-decoration: none;
    opacity: 0.7;
}

.checkout-actions__btn.btn-remove i {
    color: #101010;
    font-size: 14px;
}

/* Payment details */
.pay-details {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 0 0 30px 0;
}

.pay-details__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pay-details__title {
    font-weight: 600;
    font-size: 18px;
    color: #192653;
    margin: 0;
}

.pay-details__content {
    font-size: 16px;
    line-height: 1.5;
    color: #101010;
}

.pay-details__content p {
    margin: 0 0 8px 0;
    display: flex;
    justify-content: space-between;
}

.pay-details__content p:last-child {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    padding-top: 8px;
    border-top: 1px solid #dee2e6;
}

/* Checkout wrap */
.checkout-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #efffa6;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #101010;
}

.checkout-note__img {
    flex-shrink: 0;
    width: 24px;
    height: 25px;
}

.checkout-note__txt {
    flex: 1;
}

.checkout-note__txt p {
    margin: 0 0 8px 0;
}

.checkout-note__txt p:last-child {
    margin: 0;
}

.checkout-note__txt b {
    font-weight: 600;
}

.checkout-note__txt a {
    color: #101010;
    text-decoration: underline;
}

.checkout-note__txt a:hover {
    text-decoration: none;
}

/* Transfer details */
.transfer-details {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #101010;
}

.transfer-details__img {
    flex-shrink: 0;
    width: 24px;
    height: 25px;
}

.transfer-details__content {
    flex: 1;
}

.transfer-details__title {
    font-weight: 600;
    font-size: 16px;
    color: #192653;
    margin: 0 0 8px 0;
}

.transfer-details__title:not(:first-child) {
    margin: 16px 0 8px 0;
}

.transfer-details__txt {
    margin: 0 0 16px 0;
}

.transfer-details__txt:last-child {
    margin: 0;
}

.transfer-details__txt p {
    margin: 0 0 4px 0;
}

.transfer-details__txt p:last-child {
    margin: 0;
}

.transfer-details__txt b {
    font-weight: 600;
}

/* Empty cart */
.woocommerce-info {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woocommerce-info p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.woocommerce-info .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #00f0ff;
    color: #101010;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.woocommerce-info .btn:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #101010;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .checkout__left {
        width: 100%;
    }
    
    .checkout__right {
        width: 100%;
    }
    
    .checkout-actions {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .checkout-wrap {
        gap: 16px;
    }
    
    .checkout-note,
    .transfer-details {
        flex-direction: column;
        text-align: center;
    }
}

/* WooCommerce Checkout Form Styles */
.woocommerce-checkout {
    margin: 40px 0 0 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    margin: 0 0 30px 0;
}

.woocommerce-checkout h3 {
    font-size: 20px;
    font-weight: 600;
    color: #192653;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #00f0ff;
}

.woocommerce-checkout .form-row {
    margin: 0 0 20px 0;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-weight: 600;
    color: #192653;
    margin: 0 0 8px 0;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    font-size: 16px;
    color: #101010;
    background: #fff;
    transition: border-color 0.3s ease;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: #00f0ff;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.woocommerce-checkout .form-row.woocommerce-validated input:valid {
    border-color: #28a745;
}

.woocommerce-checkout .form-row.woocommerce-invalid input:invalid {
    border-color: #dc3545;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
    padding: 15px 20px;
    margin: 0 0 20px 0;
    border-radius: 4px;
    font-weight: 500;
}

.woocommerce-checkout .woocommerce-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.woocommerce-checkout .woocommerce-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.woocommerce-checkout .woocommerce-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Payment Methods */
.woocommerce-checkout .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.woocommerce-checkout .payment_methods li {
    margin: 0 0 15px 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.woocommerce-checkout .payment_methods li:hover {
    border-color: #00f0ff;
}

.woocommerce-checkout .payment_methods li input[type="radio"] {
    margin: 0 10px 0 0;
}

.woocommerce-checkout .payment_methods li label {
    font-weight: 600;
    color: #192653;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.woocommerce-checkout .payment_methods li .payment_box {
    margin: 15px 0 0 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
    width: 100%;
    padding: 15px 30px;
    background: #00f0ff;
    color: #101010;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-checkout #place_order:hover {
    background: #00d4e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.3);
}

.woocommerce-checkout #place_order:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Order Review */
.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    padding: 20px;
    margin: 0 0 30px 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order h3 {
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #00f0ff;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 10px 0;
    border-bottom: 1px solid #d2d2d2;
    text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
    font-weight: 600;
    color: #192653;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total {
    font-weight: 700;
    font-size: 18px;
    color: #192653;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    border-top: 2px solid #00f0ff;
    padding-top: 15px;
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .woocommerce-checkout {
        padding: 20px 15px;
        margin: 20px 0 0 0;
    }
    
    .woocommerce-checkout .form-row input,
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout .form-row textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .woocommerce-checkout #place_order {
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* Featured Products Section - Exact match to static index.html */
.wrap--favs {
    background: #000;
    padding: 60px 0;
}

/* Accessories Section - Same styles as featured products */
.wrap--extra {
    background: #000;
    padding: 60px 0;
}

.wrap--dark .title__data {
    color: #fff;
    font-size: 40px;
}

.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 40px 0;
}

.title__data {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    color: #192653;
    margin: 0;
}

.title__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #192653;
    border: 1px solid #192653;
    text-decoration: none;
    border-radius: 1000px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.title__btn.btn--border-blue {
    color: #00f0ff;
    border-color: #00f0ff;
}

.title__btn:hover {
    background: #192653;
    color: #fff;
    text-decoration: none;
}

.title__btn.btn--border-blue:hover {
    background: #00f0ff;
    color: #101010;
}

/* Featured Products Slider */
.wrap-goods-list.is-fav {
    position: relative;
}

/* Accessories Slider - Same styles as featured products */
.wrap-goods-list.is-extra {
    position: relative;
}

.wrap-goods-list.is-fav .goods-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.wrap-goods-list.is-fav .goods-list__item {
    flex: 1;
    min-height: 393px;
    background: #effffe;
    border: 1px solid #d6ecf0;
    color: #101010;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    max-width: calc(25% - 15px);
}

.wrap-goods-list.is-fav .goods-list__item:hover {
    text-decoration: none;
    color: #101010;
}

.wrap-goods-list.is-fav .goods-list__wrap-img {
    width: 100%;
    height: 220px;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.wrap-goods-list.is-fav .goods-list__img {
    max-width: 172px;
    margin: auto;
}

.wrap-goods-list.is-fav .goods-list__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px 24px;
    min-height: 57px;
    background: #00f0ff;
    font-weight: 600;
    font-size: 14px;
    font-family: "InterTight", sans-serif;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    color: #101010;
}

.wrap-goods-list.is-fav .goods-list__item.is-preorder .goods-list__tag {
    background: #000;
    color: #fff;
}

.wrap-goods-list.is-fav .goods-list__item.is-sold .goods-list__tag {
    background: #dc3545;
    color: #fff;
}

.wrap-goods-list.is-fav .goods-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 20px;
    height: calc(100% - 220px);
}

.wrap-goods-list.is-fav .goods-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin: 0 0 20px 0;
    color: inherit;
}

.wrap-goods-list.is-fav .goods-list__price {
    margin: auto 0 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.wrap-goods-list.is-fav .goods-list__iva {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 12px;
}

.wrap-goods-list.is-fav .goods-list__note {
    margin: auto 0 0;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Accessories Section - 4 items distributed across full width */
.wrap-goods-list.is-extra .goods-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.wrap-goods-list.is-extra .goods-list__item {
    flex: 1;
    min-height: 393px;
    background: #effffe;
    border: 1px solid #d6ecf0;
    color: #101010;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    max-width: calc(25% - 15px);
}

.wrap-goods-list.is-extra .goods-list__item:hover {
    text-decoration: none;
    color: #101010;
}

.wrap-goods-list.is-extra .goods-list__wrap-img {
    width: 100%;
    height: 220px;
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.wrap-goods-list.is-extra .goods-list__img {
    max-width: 172px;
    margin: auto;
}

.wrap-goods-list.is-extra .goods-list__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px 24px;
    min-height: 57px;
    background: #00f0ff;
    font-weight: 600;
    font-size: 14px;
    font-family: "InterTight", sans-serif;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    color: #101010;
}

.wrap-goods-list.is-extra .goods-list__item.is-preorder .goods-list__tag {
    background: #000;
    color: #fff;
}

.wrap-goods-list.is-extra .goods-list__item.is-sold .goods-list__tag {
    background: #dc3545;
    color: #fff;
}

.wrap-goods-list.is-extra .goods-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 20px;
    height: calc(100% - 220px);
}

.wrap-goods-list.is-extra .goods-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin: 0 0 20px 0;
    color: inherit;
}

.wrap-goods-list.is-extra .goods-list__price {
    margin: auto 0 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.wrap-goods-list.is-extra .goods-list__iva {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 12px;
}

.wrap-goods-list.is-extra .goods-list__note {
    margin: auto 0 0;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .wrap-goods-list.is-fav .goods-list {
        flex-wrap: wrap;
    }
    
    .wrap-goods-list.is-fav .goods-list__item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-height: 368px;
    }
    
    .wrap-goods-list.is-fav .goods-list__wrap-img {
        height: 170px;
    }
    
    .wrap-goods-list.is-fav .goods-list__content {
        height: calc(100% - 170px);
    }
    
    .wrap-goods-list.is-extra .goods-list__item {
        width: 260px;
        min-height: 368px;
    }
    
    .wrap-goods-list.is-extra .goods-list__wrap-img {
        height: 170px;
    }
    
    .wrap-goods-list.is-extra .goods-list__content {
        height: calc(100% - 170px);
    }
    
    .wrap-goods-list.is-extra .goods-list {
        flex-wrap: wrap;
    }
    
    .wrap-goods-list.is-extra .goods-list__item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-height: 368px;
    }
}

@media (max-width: 480px) {
    .wrap-goods-list.is-fav .goods-list__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .wrap-goods-list.is-extra .goods-list__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Brands and Categories Section - Exact match to static index.html */
.wrap--catalog {
    padding: 60px 0;
    background: #fff;
}

.title--center {
    text-align: center;
    flex-direction: column;
    gap: 20px;
}

.title--center .title__data {
    margin: 0;
}

.brands {
    margin: 0 0 40px 0;
}

.brands__title {
    font-size: 18px;
    color: #666;
    margin: 0 0 30px 0;
    text-align: center;
}

.brands-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brands-list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.brands-list__item:hover {
    transform: translateY(-4px);
}

.brands-list__img {
    max-width: 100%;
    height: auto;
}

.brands-list__img img {
    width: auto;
    height: auto;
    max-height: 100%;
    aspect-ratio: auto;
}

/* Categories Section - Exact match to static version */
.wrap-catalog-list {
    padding: 46px 0 0;
}

.catalog-list {
    margin: 0 0 86px 0;
}

.catalog-list:last-child {
    margin: 0;
}

.catalog-list__top-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 30px 0;
}

.catalog-list__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #192653;
}

@media only screen and (min-width: 768px) {
    .catalog-list__title {
        font-size: 40px;
    }
}

.catalog-list__btn {
    display: inline-flex;
    gap: 12px;
    padding: 0 0 8px 0;
    font-weight: 600;
    font-size: 14px;
    color: #101010;
    border-bottom: 1px solid #101010;
}

.catalog-list__btn:hover {
    text-decoration: none;
}

.catalog-list__btn .icon-dots::before {
    content: "→";
    font-size: 16px;
    font-weight: bold;
}

/* Catalog products styling */
.catalog-list .goods-list {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.catalog-list .goods-list__item {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #effffe;
    border-radius: 0;
    overflow: hidden;
}

.catalog-list .goods-list__wrap-img {
    width: 100%;
    height: 220px;
    position: relative;
    display: block;
    text-decoration: none;
}

.catalog-list .goods-list__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-list .goods-list__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px 24px;
    min-height: 57px;
    background: #00f0ff;
    font-weight: 600;
    font-size: 14px;
    font-family: "InterTight", sans-serif;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    color: #101010;
}

.catalog-list .goods-list__item.is-preorder .goods-list__tag {
    background: #000;
    color: #fff;
}

.catalog-list .goods-list__item.is-sold .goods-list__tag {
    background: #ff6b6b;
}

.catalog-list .goods-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    min-height: 0;
}

.catalog-list .goods-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: inherit;
    text-decoration: none;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
}

.catalog-list .goods-list__title:hover {
    text-decoration: none;
    color: inherit;
}

.catalog-list .goods-list__price {
    margin: auto 0 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #101010;
}

.catalog-list .goods-list__iva {
    font-size: 12px;
    color: #666;
    margin: 5px 0 0 0;
}

.catalog-list .goods-list__note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

.catalog-list .goods-list__note i {
    font-size: 16px;
}

/* Ensure only 2 products are visible */
.catalog-list .goods-list__item:nth-child(n+3) {
    display: none;
}

/* Catalog product actions */
.catalog-list .goods-list-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0 0;
}

.catalog-list .goods-list-actions__btn {
    min-width: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 57px;
    background: #00f0ff;
    border-radius: 10000px;
    transition: all .3s ease-in-out;
    position: relative;
    border: 0;
    font-family: "InterTight", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #101010;
    text-decoration: none;
    padding: 6px 14px;
    width: 134px;
    max-width: 100%;
}

.catalog-list .goods-list-actions__btn:hover {
    background: #00d4e6;
    color: #101010;
    text-decoration: none;
}

/* Responsive for catalog - Exact match to static version */
@media only screen and (min-width: 768px) {
    .wrap-catalog-list {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px 10px;
    }
    
    .catalog-list {
        margin: 0;
        width: calc(50% - 5px);
    }
    
    .wrap-goods-list {
        overflow: hidden;
    }
}

@media only screen and (min-width: 1100px) {
    .wrap-catalog-list {
        gap: 40px 20px;
    }
    
    .catalog-list {
        width: calc(50% - 10px);
    }
    
    .catalog-list .goods-list__item {
        max-width: calc(50% - 10px);
    }
    
    .catalog-list__top-bar {
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
    }
    
}

/* Price hiding styles for non-approved users */
.price-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-style: italic;
    font-size: 14px;
    margin: 10px 0;
}

.price-placeholder i {
    color: #999;
    font-size: 16px;
}

/* Hide price-placeholder on single product page - we use woocommerce-info instead */
.single-product .price-placeholder,
.single-product .price-hidden {
    display: none !important;
}

.goods-list__note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-style: italic;
    font-size: 11px;
    margin: 0 0 20px;
    line-height: 13px;
}

.goods-list__note i {
    color: #999;
    font-size: 16px;
}

.checkout-actions__price .icon-eye {
    color: #999;
    margin-right: 8px;
}

/* Hide price elements for non-approved users */
.is-hidden {
    display: none !important;
}

.good-quantity {
    padding: 0px 0 20px;
}

.good-price-quantity {
    display: flex;
    align-items: baseline;
}

.woocommerce-Price-amount.amount {
    font-size: 24px;
    font-weight: bold;
    padding-right: 20px;
}

@media only screen and (min-width: 1100px) {
    .wrap-goods-list.is-grid .goods-list__item {
        width: calc(25% - 8px);
    }

    
}



