/* ============================================
   Dash Parts / Гран-Хок — WooCommerce Styles
   Theme: hello-biz-child
   Colors: Teal #257785 / Black #000 / Text #4E5B6D
   ============================================ */

/* --- Override Elementor Global Colors + define font --- */
:root,
body,
.elementor-kit-7 {
    --e-global-color-primary: #000000 !important;
    --e-global-color-secondary: #257785 !important;
    --e-global-color-text: #4E5B6D !important;
    --e-global-color-accent: #000000 !important;
    --gh-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --gh-teal: #257785;
    --gh-teal-hover: #1d6270;
    --gh-text: #4E5B6D;
    --gh-secondary: #8a94a3;
    --gh-border: #e8eaed;
}

/* --- Base Font --- */
body.woocommerce,
body.woocommerce-page {
    font-family: var(--gh-font) !important;
    color: var(--gh-text) !important;
}

/* --- Hide sorting & result count --- */
.woocommerce-ordering,
.woocommerce-result-count {
    display: none !important;
}

/* --- Page Title (h1) --- */
body.woocommerce h1,
body.woocommerce-page h1,
.elementor-widget-woocommerce-breadcrumb + .elementor-widget h1,
.woocommerce .woocommerce-products-header__title {
    font-family: var(--gh-font) !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 32px !important;
    line-height: 1.3 !important;
}

/* --- Breadcrumbs --- */
.woocommerce .woocommerce-breadcrumb,
.elementor-widget-woocommerce-breadcrumb .woocommerce-breadcrumb {
    font-family: var(--gh-font) !important;
    font-size: 14px !important;
    color: var(--gh-secondary) !important;
    padding: 15px 0 !important;
    margin-bottom: 8px !important;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--gh-teal) !important;
    text-decoration: none !important;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--gh-teal-hover) !important;
}

/* ============================================
   GRID: Products & Categories
   ============================================ */

.woocommerce ul.products,
.woocommerce-page ul.products,
.elementor-widget-wc-archive-products ul.products,
ul.products.elementor-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Card base */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.elementor-widget-wc-archive-products ul.products li.product,
ul.products.elementor-grid li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 1px solid var(--gh-border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
}

.woocommerce ul.products li.product:hover,
.elementor-widget-wc-archive-products ul.products li.product:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */

.elementor-widget-wc-archive-products ul.products li.product-category > a,
.woocommerce ul.products li.product-category > a {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    color: inherit !important;
    flex: 1 !important;
}

.elementor-widget-wc-archive-products ul.products li.product-category:hover,
.woocommerce ul.products li.product-category:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}

/* Category image */
.elementor-widget-wc-archive-products ul.products li.product-category > a > img,
.woocommerce ul.products li.product-category > a > img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Category title — Elementor-specific selector for max specificity */
.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product-category h2.woocommerce-loop-category__title,
.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title,
.woocommerce ul.products li.product-category h2 {
    font-family: var(--gh-font) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000 !important;
    padding: 16px 20px 16px 20px !important;
    margin: 0 !important;
    background: #fff !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

/* Category count (inside h2) — scoped to WooCommerce context */
.elementor-widget-wc-archive-products ul.products li.product-category h2 mark.count,
.woocommerce ul.products li.product-category h2 mark.count {
    display: block !important;
    font-size: 14px !important;
    color: var(--gh-secondary) !important;
    font-weight: 400 !important;
    background: none !important;
    background-color: transparent !important;
    margin-top: 4px !important;
    padding: 0 !important;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.elementor-widget-wc-archive-products ul.products li.product:not(.product-category) > a,
.woocommerce ul.products li.product:not(.product-category) .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product:not(.product-category) .woocommerce-loop-product__link,
.woocommerce ul.products li.product:not(.product-category) > a:first-child {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    color: inherit !important;
    flex: 1 !important;
}

/* Product image */
.elementor-widget-wc-archive-products ul.products li.product:not(.product-category) a img,
.woocommerce ul.products li.product:not(.product-category) a img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Product title */
.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product h2.woocommerce-loop-product__title,
.elementor-widget-wc-archive-products ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--gh-font) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #000 !important;
    padding: 16px 20px 8px 20px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Product price (archive) */
.elementor-widget-wc-archive-products.elementor-wc-products ul.products li.product .price,
.elementor-widget-wc-archive-products ul.products li.product span.price,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product span.price {
    font-family: var(--gh-font) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--gh-teal) !important;
    padding: 0 20px 12px 20px !important;
    margin: 0 !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del {
    color: #999 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* Add to cart / "Подробнее" button (archive) */
.elementor-widget-wc-archive-products ul.products li.product a.button,
.elementor-widget-wc-archive-products ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product button.button {
    background: var(--gh-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    width: calc(100% - 40px) !important;
    margin: auto 20px 16px 20px !important;
    padding: 12px 24px !important;
    text-align: center !important;
    font-family: var(--gh-font) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    text-decoration: none !important;
    display: block !important;
    line-height: 1.4 !important;
    text-transform: none !important;
}

.elementor-widget-wc-archive-products ul.products li.product a.button:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
    background: var(--gh-teal-hover) !important;
    color: #fff !important;
}

/* "View cart" link */
.woocommerce ul.products li.product a.added_to_cart {
    display: block !important;
    text-align: center !important;
    color: var(--gh-teal) !important;
    font-size: 13px !important;
    padding: 0 20px 12px !important;
    text-decoration: none !important;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */

.woocommerce div.product .product_title,
.woocommerce div.product h1,
.elementor-widget-wc-product-title h1 {
    font-family: var(--gh-font) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce div.product .summary .price,
.elementor-widget-wc-product-price .price {
    font-family: var(--gh-font) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--gh-teal) !important;
    padding: 0 !important;
    margin: 10px 0 20px !important;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .summary p,
.elementor-widget-wc-product-content p {
    color: #6b7685 !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
}

/* Product meta */
.woocommerce div.product .product_meta,
.elementor-widget-wc-product-meta .product_meta {
    color: var(--gh-secondary) !important;
    font-size: 14px !important;
    padding-top: 16px !important;
    margin-top: 16px !important;
    border-top: 1px solid var(--gh-border) !important;
}

.woocommerce div.product .product_meta a,
.elementor-widget-wc-product-meta .product_meta a {
    color: var(--gh-teal) !important;
    text-decoration: none !important;
}

.woocommerce div.product .product_meta a:hover {
    color: var(--gh-teal-hover) !important;
}

/* Gallery */
.woocommerce div.product div.images .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img,
.elementor-widget-wc-product-images img {
    border-radius: 8px !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

.woocommerce div.product div.images .flex-control-thumbs li:hover,
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
    border-color: var(--gh-teal) !important;
}

/* Add to cart button (single product) */
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button,
.elementor-widget-wc-add-to-cart .single_add_to_cart_button {
    background: var(--gh-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 24px !important;
    font-family: var(--gh-font) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    text-transform: none !important;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
    background: var(--gh-teal-hover) !important;
    color: #fff !important;
}

/* Quantity input */
.woocommerce div.product form.cart .quantity input.qty {
    border: 1px solid var(--gh-border) !important;
    border-radius: 6px !important;
    padding: 10px !important;
    font-size: 16px !important;
    width: 70px !important;
    text-align: center !important;
}

/* ============================================
   GLOBAL BUTTONS
   ============================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background-color: var(--gh-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: var(--gh-font) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 12px 24px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    text-decoration: none !important;
    text-transform: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
    background-color: var(--gh-teal-hover) !important;
    color: #fff !important;
}

/* ============================================
   FOCUS STYLES (Accessibility)
   ============================================ */
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.woocommerce a.button.alt:focus,
.woocommerce div.product .single_add_to_cart_button:focus {
    outline: 2px solid var(--gh-teal) !important;
    outline-offset: 2px !important;
}

.woocommerce ul.products li.product a:focus,
.woocommerce .woocommerce-breadcrumb a:focus,
.woocommerce div.product .product_meta a:focus {
    outline: 2px solid var(--gh-teal) !important;
    outline-offset: 2px !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus {
    outline: 2px solid var(--gh-teal) !important;
    outline-offset: 2px !important;
    border-color: var(--gh-teal) !important;
}

/* ============================================
   TABS (Single Product)
   ============================================ */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 20px !important;
    border-bottom: 2px solid var(--gh-border) !important;
    list-style: none !important;
    display: flex !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--gh-font) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--gh-text) !important;
    padding: 12px 24px !important;
    display: block !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px !important;
    transition: color 0.2s ease, border-color 0.2s ease !important;
    text-decoration: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--gh-teal) !important;
    border-bottom-color: var(--gh-teal) !important;
}

/* ============================================
   PAGINATION
   ============================================ */
.woocommerce nav.woocommerce-pagination ul {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    border: none !important;
    padding: 24px 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current {
    font-family: var(--gh-font) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    min-width: 40px !important;
    text-align: center !important;
    display: inline-block !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--gh-teal) !important;
    color: #fff !important;
    border: 1px solid var(--gh-teal) !important;
}

.woocommerce nav.woocommerce-pagination ul li a {
    color: var(--gh-text) !important;
    border: 1px solid var(--gh-border) !important;
    background: #fff !important;
    text-decoration: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--gh-teal) !important;
    color: var(--gh-teal) !important;
    background: #f8fafb !important;
}

/* ============================================
   STAR RATING
   ============================================ */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
    color: var(--gh-teal) !important;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.woocommerce div.product section.related > h2 {
    font-family: var(--gh-font) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 24px !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .elementor-widget-wc-archive-products ul.products,
    ul.products.elementor-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 575px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .elementor-widget-wc-archive-products ul.products,
    ul.products.elementor-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.woocommerce h1,
    body.woocommerce-page h1 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 24px !important;
    }
}


/* ============================================
   SALE PRODUCTS CAROUSEL (Homepage)
   ============================================ */

.gh-sale-carousel-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.gh-sale-carousel {
    overflow: hidden;
}

/* Card */
.gh-sale-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    background: #fff !important;
    border-radius: 13px !important;
    padding: 33px 30px 28px 40px !important;
    text-decoration: none !important;
    color: inherit !important;
    min-height: 340px;
    transition: box-shadow 0.3s ease !important;
    gap: 0;
}

.gh-sale-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Left side — info */
.gh-sale-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-right: 15px;
}

.gh-sale-card__title {
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #000 !important;
    margin: 0 0 8px 0 !important;
}

/* "Описание" link */
.gh-sale-card__desc-link {
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #257785 !important;
    text-decoration: underline !important;
    margin-bottom: 14px;
    cursor: pointer;
}

/* Bonus (gift icon + text) */
.gh-sale-card__bonus {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
}

.gh-sale-card__bonus-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.gh-sale-card__bonus-text {
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.4;
}

/* Prices */
.gh-sale-card__prices {
    margin-top: auto;
    margin-bottom: 14px;
}

.gh-sale-card__old-price {
    display: block;
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #999 !important;
    text-decoration: line-through !important;
    margin-bottom: 2px;
}

.gh-sale-card__new-price {
    display: block;
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

/* "В каталог" button — RED per mockup */
.gh-sale-card__btn {
    display: inline-block;
    background: #d63031 !important;
    color: #fff !important;
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px 36px !important;
    border-radius: 9px !important;
    text-align: center;
    width: fit-content;
    transition: background-color 0.2s ease !important;
    margin-bottom: 10px;
}

.gh-sale-card:hover .gh-sale-card__btn {
    background: #b71c1c !important;
}

/* "Срок действия" */
.gh-sale-card__validity {
    font-family: var(--gh-font, "Inter", sans-serif) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #999 !important;
}

/* Right side — image */
.gh-sale-card__visual {
    position: relative;
    width: 45%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-sale-card__img {
    max-width: 100%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Navigation arrows */
.gh-sale-nav {
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 51px;
    height: 50px;
    transition: opacity 0.2s ease;
}

.gh-sale-nav:hover,
.gh-sale-nav:focus,
.gh-sale-nav:active {
    opacity: 0.8;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.gh-sale-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.gh-sale-prev {
    left: -72px;
}

.gh-sale-next {
    right: -72px;
}

/* Dots pagination */
.gh-sale-dots {
    text-align: center;
    margin-top: 30px;
}

.gh-sale-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(0,0,0,0.2);
    opacity: 1;
    margin: 0 6px;
}

.gh-sale-dots .swiper-pagination-bullet-active {
    background: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .gh-sale-carousel-wrap {
        padding: 0;
    }

    .gh-sale-card {
        padding: 24px 20px 22px 28px !important;
        min-height: 280px;
    }

    .gh-sale-card__title {
        font-size: 18px !important;
    }

    .gh-sale-card__new-price {
        font-size: 22px !important;
    }
}

@media (max-width: 767px) {
    .gh-sale-carousel-wrap {
        padding: 0;
    }

    .gh-sale-card {
        flex-direction: column !important;
        padding: 24px 20px 20px 20px !important;
        min-height: auto;
    }

    .gh-sale-card__info {
        padding-right: 0 !important;
        width: 100% !important;
    }

    .gh-sale-card__visual {
        width: 100% !important;
        max-height: 200px;
        margin-top: 16px;
    }

    .gh-sale-card__img {
        max-height: 180px;
    }

    .gh-sale-card__title {
        font-size: 18px !important;
    }

    .gh-sale-card__new-price {
        font-size: 22px !important;
    }

    .gh-sale-card__bonus-text {
        font-size: 12px !important;
    }

    .gh-sale-card__btn {
        padding: 12px 24px !important;
    }
}

@media (max-width: 480px) {
    .gh-sale-carousel-wrap {
        padding: 0;
    }

    .gh-sale-nav {
        width: 36px;
        height: 36px;
    }

    .gh-sale-nav svg {
        width: 36px;
        height: 36px;
    }
}

/* Fix horizontal scroll from arrows on all carousels */
@media (max-width: 1100px) {
    .elementor-page .elementor {
        overflow-x: hidden !important;
    }
}

/* Global fix: prevent any horizontal scroll */
html, body {
    overflow-x: hidden !important;
}


/* Arrows inside container on smaller screens */
@media (max-width: 1100px) {
    .gh-sale-prev {
        left: 5px !important;
    }

    .gh-sale-next {
        right: 5px !important;
    }

    .gh-sale-nav {
        z-index: 20 !important;
        background: rgba(255,255,255,0.8) !important;
        border-radius: 50% !important;
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .gh-sale-nav svg {
        width: 44px !important;
        height: 44px !important;
    }
}

@media (max-width: 480px) {
    .gh-sale-nav {
        width: 36px !important;
        height: 36px !important;
    }

    .gh-sale-nav svg {
        width: 36px !important;
        height: 36px !important;
    }

    .gh-sale-prev {
        left: 2px !important;
    }

    .gh-sale-next {
        right: 2px !important;
    }
}
