/* =========================================================
   SHARED CENTER CONTAINER (HEADER + CONTENT)
   ========================================================= */

.header-inner,
.page-content,
.catalog-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* =========================================
   Base / global styles
   ========================================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Main page content wrapper */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 12px;
    margin: 12px auto;
    max-width: 1200px;
}

.breadcrumbs a {
    color: #000;
}

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

/* STEM */
.scroll-to-top::before {
    content: "";
    width: 3px;
    height: 20px;
    background: #fff;
    display: block;
    margin-bottom: 0px;
}

/* ARROW HEAD */
.scroll-to-top::after {
    content: "";
    width: 4px;
    height: 4px;

    border-left: 3px solid #fff;
    border-top: 3px solid #fff;

    transform: rotate(45deg);
    position: absolute;
    top: 14px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #111;
}

