:root {
    --font-primary: 'Avenir LT Std', sans-serif;
    --color-primary: #446e89;
    --color-primary-bg: #446e890a;
    --color-secondary: #1d333e;
    --color-text: #4c4c4c;
    --color-black: #000;
    --title-black: #1c272c;
    --title-white: #f7f7f7;
    --btn-hover: #46708b;
    --gradient-blue: linear-gradient(90deg, #6d9ab8 0%, #456f8a 100%);
}
.section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Global */
.container {
    max-width: 75.95rem;
    margin: 0 auto;
}
.font-primary *,
.font-primary {
    font-family: var(--font-primary) !important;
}
.white-btn {
    display: inline-block;
    border-radius: 6.25rem;
    background-color: #fff;
    padding: 1rem 1.5rem;
    color: #000;
    font-weight: 500;
    line-height: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.white-btn:hover {
    color: #fff;
    background-color: var(--btn-hover);
}
.btn-primary {
    display: inline-block;
    border-radius: 6.25rem;
    padding: 1rem 1.5rem;
    color: #fff;
    border: 1px solid var(--btn-hover);
    background-color: var(--btn-hover);
    font-weight: 500;
    line-height: 1em;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #222;
    border-color: #222;
}
.btn-secondary {
    display: inline-block;
    border-radius: 6.25rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    color: #fff;
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
}
.section {
    margin: 4rem 0;
    padding: 0 1rem;
}
.space-x {
    padding: 0 1rem;
}
@media screen and (min-width: 768px) {
    .section {
        padding: 0 1.5rem;
        margin: 8rem 0;
    }
    .space-x {
        padding: 0 1.5rem;
    }
    .btn-primary,
    .btn-secondary {
        font-size: 1.125rem;
    }
}

/* Footer */
.footer-bg {
    padding: 5rem 0 1.99rem 0;
    background-color: #253741;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
.footer-col,
.footer-menu-col {
    width: 100%;
}
.footer-logo-link {
    display: inline-block;
    max-width: 7rem;
}
.footer-logo {
    width: 100%;
}
.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4rem;
    margin-top: 1.43rem;
}
.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3125rem;
    letter-spacing: 0.04375rem;
    margin-bottom: 1.6rem;
}
.footer-menu .menu {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin: 0;
}
.footer-menu .menu-item a {
    text-decoration: none;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.3125rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.footer-menu .menu-item a:hover {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.footer-divider {
    margin: 2.5rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-size: 0.8125rem;
    line-height: 1.3rem;
    margin-bottom: 0.87rem;
}
.footer-copywrite {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.21875rem;
}
@media screen and (min-width: 768px) {
    .footer-col {
        width: calc(40% - 2.25rem);
    }
    .footer-menu-col {
        width: calc(20% - 2.25rem);
    }
    .footer-disclaimer {
        text-align: center;
    }
    .footer-divider {
        margin: 3.94rem 0 2.16rem 0;
    }
}

/* Product Item */
.product-item {
    width: calc(50% - 0.65rem);
}
.product-item-link {
    flex-direction: column;
}
.product-item * {
    text-decoration: none;
}
.product-item:hover .product-item-img {
    border-color: var(--color-primary);
}
.product-item:hover .product-item-title {
    color: var(--color-primary);
}
.product-item-img {
    border-radius: 0.75rem;
    border: 1px solid #cecece;
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s ease;
}
.product-item-title {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    line-height: 130%;
    margin: 1.06rem 0 0.75rem 0;
    transition: all 0.3s ease;
}
.product-item-price .woocommerce-Price-amount {
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 110%;
}
.product-item-btn {
    margin-top: 1.25rem;
    width: 100%;
    text-align: center;
}
.product-btn-wrapper {
    text-align: center;
}
.product-btn {
    margin: 2.5rem auto 0 auto;
    padding: 1rem 4rem;
}
.catalog-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
    animation: fadeIn 0.2s ease;
    position: absolute;
    left: 0;
    top: 20rem;
    z-index: 10;
}
.catalog-spinner {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: catalog-spin 0.8s linear infinite;
}
@keyframes catalog-spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@media screen and (min-width: 768px) {
    .product-item {
        width: calc(25% - 0.9375rem);
    }
    .product-item-title {
        font-size: 1.25rem;
    }
    .product-item-price .woocommerce-Price-amount {
        font-size: 1rem;
    }
    .product-btn {
        margin: 3.44rem auto 0 auto;
    }
}