/* Base */
:root {
    --light-blue: #00aced;
    --mid-blue: #006989;
    --dark-blue: #002936;
    --gray: #595959;
    --border-gray: #dbdbdb;
    --black-15: rgba(0, 0, 0, 0.15);
    --black-3: rgba(0, 0, 0, 0.3);
    --orange: #fb6806;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

/* =========================================================
   Mobile Layout
   ========================================================= */

/* Layout Shell */
.site-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.site-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Mobile Top Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    width: 100%;
    background: var(--light-blue);
    color: var(--white);
    padding: 8px 10px;
    font-size: 0.75rem;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle i {
    color: var(--white);
    font-family: FontAwesome;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu-text {
    display: inline-block;
    width: 66px;
    color: var(--white);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu-toggle .close-icon {
    display: none;
}

#menu-toggle-check:checked ~ .top-nav .bars-icon {
    display: none;
}

#menu-toggle-check:checked ~ .top-nav .close-icon {
    display: inline-block;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.cart-info i {
    color: var(--white);
    font-family: FontAwesome;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cart-info a:hover {
    color: var(--orange);
}

.cart-info a:hover i {
    color: var(--orange);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 40px;
    padding: 0 14px;
    border-radius: 50px;
    border: 0;
    background: var(--black-15);
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cart-count:hover,
.cart-count:active,
.cart-count.is-active {
    background: var(--orange);
}

/* Mobile Dropdown Nav */
.main-site-nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
}

.nav-bar {
    position: relative;
    width: 100%;
}

#menu-toggle-check:checked ~ .nav-bar .main-site-nav {
    display: block;
}

.main-site-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    background: var(--light-blue);
    padding: 10px 12px;
}

.main-site-nav .nav-login {
    order: -1;
}

.main-site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}
.main-site-nav li:hover {
    border-bottom: 1px solid var(--Orange, #fb6806);
}

.main-site-nav li:last-child {
    border-bottom: 0;
}

.main-site-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    padding: 8px 6px;
}

.nav-spacer,
.nav-cart,
.fa-lock {
    display: none;
}

.main-site-nav .nav-login .fa-lock {
    display: none;
}

/* Header Content */
.header-logo-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.header-main {
    background: var(--white);
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.header-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-logo img {
    display: block;
    width: min(100%, 290px);
    height: auto;
    margin-inline: auto;
}

.search-container,
.search-form,
.search {
    width: 100%;
}

.search-container {
    display: flex;
    justify-content: center;
}

.search-form {
    display: flex;
    width: 100%;
    max-width: 270px;
    margin-inline: auto;
    height: 40px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.search-form input {
    width: 100%;
    max-width: 220px;
    height: 40px;
    background: rgba(0, 0, 0, 0);
    padding: 0 11px;
    border: 1px solid #595959;
    border-radius: 50px;
    font-size: 0.78rem;
}

.submit-btn {
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.search-icon-stack {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.search-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    line-height: 1;
    color: var(--dark-blue);
    z-index: 1;
}

.search-icon-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    font-family: FontAwesome;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Product Sections */
.product-categories {
    background: var(--dark-blue);
    display: flex;
    width: min(100%, 360px);
    padding: 18px clamp(12px, 4vw, 28px);
    justify-content: center;
    align-items: center;
}

.categories,
.categories-track {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-shrink: 0;
}

.product-categories a {
    display: flex;
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    max-width: 145px;
    padding: 8px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    color: var(--white);
    text-decoration: none;
}

.product-categories a {
    transition: background-color 0.2s ease;
}

.product-categories a:hover,
.product-categories a.active {
    background-color: var(--light-blue);
}

.hero-banner {
    display: none;
}
/* Featured Products & Brands */
.featured-products h2,
.featured-heading,
.brands h2 {
    width: min(calc(100% - 16px), 360px);
    height: 40px;
    margin: 15px auto;
    border-radius: 50px 0 0 50px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 18px 0 20px;
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.no-products {
    width: 100%;
    text-align: center;
    color: var(--gray);
    padding: 40px 0;
    font-size: 14px;
}

.product-grid {
    display: flex;
    width: min(100%, 360px);
    margin-inline: auto;
    padding: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.product-card {
    display: flex;
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    max-width: 155px;
    height: 250px;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--border-gray);
    background: var(--white);
}

.product-card:hover {
    box-shadow: 0.7px 0.7px 4px 0 rgba(255, 105, 12, 0.75);
}

.product-card img {
    width: 100%;
    max-width: 118px;
    height: 96px;
    object-fit: contain;
}

.price-container {
    width: 135px;
    height: auto;
    max-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price {
    width: 97px;
    color: var(--gray);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.current-price {
    color: var(--orange);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.original-price {
    color: var(--gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
}

.was-label {
    color: var(--gray);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-name {
    width: 135px;
    color: var(--mid-blue);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
/* Brands Section */

.brands-description {
    width: calc(100% - 40px);
    height: auto;
    max-height: 67px;
    color: var(--gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 15px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brands-highlight {
    display: block;
    margin-top: 6px;
    color: var(--light-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    align-self: self-start;
}

.brands-logos {
    background-color: var(--dark-blue);
    width: 100%;
    height: auto;
    display: flex;
    padding: 15px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    align-self: stretch;
}

.brand-list {
    list-style: none;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    row-gap: 15px;
    justify-items: center;
    align-items: center;
}

.brand-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.brand-list img {
    width: 80px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Footer */

.site-footer {
    background: var(--light-blue);
    color: var(--white);
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    align-self: stretch;
}

.footer-nav {
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14.756px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer-categories,
.contact-info {
    padding: 10px;
}

.footer-categories {
    display: none;
}

.footer-nav h3,
.site-footer h3,
.contact-info h3 {
    color: var(--white);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.footer-nav a,
.footer-categories a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    line-height: 1.45;
}

.footer-nav a:hover,
.footer-categories a:hover {
    color: var(--gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-nav li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-nav li::before {
    content: "";
    width: 10px;
    height: 6px;
    border-radius: 50px 0 0 50px;
    background: var(--black-3);
    flex-shrink: 0;
}

.contact-info {
    width: 100%;
    height: 170.5px;
    overflow: hidden;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: inline-flex;
    align-items: flex-start;
    gap: 25px;
    list-style-type: none;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.social-icons li::before {
    content: none;
}

.social-icons i {
    width: 81px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    font-size: 1.45rem;
}

.copyright {
    width: calc(100% + 30px);
    background: var(--white);
    display: flex;
    justify-content: center;
    margin: 10px -15px -15px;
}

.copyright p {
    color: var(--gray);
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
    padding: 12px 16px 14px;
}
/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Desktop Styles */
@media (min-width: 960px) {
    .site-wrapper {
        width: 100%;
        margin-inline: 0;
    }

    .top-nav,
    #menu-toggle-check {
        display: none;
    }

    .main-site-nav {
        background: var(--light-blue);
        width: 100%;
        height: 50px;
        position: static;
        display: flex;
        padding: 0;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }

    .nav-bar {
        width: 100%;
        height: 50px;
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-main,
    .product-categories,
    #main-content {
        width: min(100% - 48px, 961px);
        margin-left: auto;
        margin-right: auto;
    }

    .main-site-nav ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 960px;
        height: 30px;
        margin: 0 auto;
        padding: 0;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }

    .main-site-nav li {
        order: 0;
        border: 0;
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

    .main-site-nav li:hover {
        border-bottom: 0;
    }

    .main-site-nav a:hover {
        color: var(--orange);
    }

    .main-site-nav .nav-login {
        order: 0;
    }

    .main-site-nav a {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        line-height: 1;
        white-space: nowrap;
    }

    .main-site-nav .nav-login .fa-lock {
        display: inline-block;
    }

    .main-site-nav .nav-login a {
        gap: 4px;
    }

    .nav-spacer {
        display: block;
        margin-left: auto;
    }

    .nav-cart {
        display: flex;
        align-self: center;
        align-items: center;
        gap: 15px;
        color: var(--white);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .nav-cart a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    /* Header Content */

    .header-main {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    .header-logo {
        display: flex;
        width: auto;
        height: 83px;
        justify-content: center;
        align-items: center;
    }

    .header-logo img {
        width: 600px;
        height: 83px;
        flex-shrink: 0;
    }

    .header-logo-search {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .search-container {
        width: 320px;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .search-form {
        width: 270px;
        height: 40px;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 50px;
    }

    .search-form input {
        width: 220px;
        height: 40px;
        margin-top: 8px;
        margin-left: 19px;
        color: var(--gray);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .submit-btn {
        width: 40px;
        height: 40px;
        fill: var(--dark-blue);
    }

    /* Product Sections */

    .product-categories {
        width: min(100% - 48px, 961px);
        height: 58px;
        display: flex;
        padding: 0 12px;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        background: var(--dark-blue);
        margin-left: auto;
        margin-right: auto;
    }

    .product-categories .categories,
    .product-categories .categories-track {
        width: 100%;
        max-width: 960px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
        gap: 6px;
    }

    .product-categories a {
        width: auto;
        flex: 0 0 auto;
        height: auto;
        max-width: none;
        border: none;
        border-radius: 50px;
        padding: 6px 14px;
        font-size: 14px;
        white-space: nowrap;
        color: var(--white);
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .product-categories a:hover,
    .product-categories a:focus-visible,
    .product-categories a.active {
        background: var(--light-blue);
        border-radius: 50px;
    }

    /* Hero Banner */

    .hero-banner {
        position: relative;
        display: block;
        max-width: 961px;
        margin: 0 auto 18px;
        height: 340px;
        overflow: hidden;
    }

    .hero-slides {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
    }

    .hero-slide.is-active {
        opacity: 1;
    }

    .hero-promo {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 300px;
        height: 340px;
        display: inline-flex;
        padding: 46px 30px 60px 117px;
        flex-direction: column;
        align-items: center;
        border-radius: 200px 0 0 200px;
        border: 2px solid var(--white);
        background: var(--light-blue);
        color: var(--white);
    }

    .hero-small-text {
        width: 153px;
        color: var(--white);
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .hero-title {
        width: 143px;
        color: var(--white);
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin: 8px 0 10px;
    }

    .hero-button {
        display: flex;
        width: 130px;
        height: 36px;
        padding: 6px 10px 5px 10px;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        background: var(--mid-blue);
        color: var(--white);
        text-decoration: none;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        transition: background-color 0.2s ease;
    }

    .hero-button:hover,
    .hero-button:focus-visible {
        background: var(--orange);
        color: var(--white);
    }

    .hero-dots {
        width: 54px;
        height: 14px;
        position: absolute;
        left: 50%;
        bottom: 8px;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
    }

    .hero-dot {
        width: 14px;
        height: 14px;
        border: 1px solid var(--white);
        padding: 0;
        border-radius: 50%;
        background: rgba(0, 172, 237, 0.5);
        cursor: pointer;
    }

    .hero-dot.is-active {
        background: var(--light-blue);
    }

    .hero-dot:focus-visible {
        outline: 2px solid var(--white);
        outline-offset: 2px;
    }

    /* Featured Products & Brands */

    .featured-products h2,
    .featured-heading,
    .brands h2 {
        width: 960px;
        height: 40px;
        margin: 15px auto;
        background: var(--orange);
        border-radius: 50px 0 0 50px;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .product-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
        padding: 15px;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }

    .product-card {
        border-radius: 5px;
        border: 1px solid var(--border-gray);
        background: var(--white);
        display: flex;
        width: 180px;
        flex: 0 0 180px;
        height: 280px;
        padding: 12px 10px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        gap: 0;
    }

    .product-card img {
        width: 100%;
        max-width: 130px;
        height: 110px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .product-info-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 12px;
    }

    .price-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
    }

    .price,
    .current-price {
        font-size: 18px;
        font-weight: 600;
        white-space: nowrap;
    }

    .current-price {
        color: var(--orange);
    }

    .price {
        color: var(--gray);
    }

    .was-price {
        display: inline-flex;
        align-items: baseline;
        gap: 3px;
        white-space: nowrap;
        font-size: 13px;
    }

    .original-price {
        font-size: 13px;
        color: var(--gray);
        text-decoration: line-through;
    }

    .was-label {
        font-size: 11px;
        color: var(--gray);
        text-transform: uppercase;
    }

    .product-name {
        width: 100%;
        color: var(--mid-blue);
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
    }

    /*logos*/

    .brands-content {
        display: flex;
        flex-direction: row;
        width: 960px;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .brands-description {
        flex: 1;
        width: 100%;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        margin: 0 auto;
        padding-left: 30px;
    }

    .brands-highlight {
        color: var(--light-blue);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .brands-logos {
        display: flex;
        width: 660px;
        height: 93px;
        padding: 20px 10px 20px 40px;
        justify-content: space-between;
        align-items: center;
        border-radius: 50px 0 0 50px;
        background: var(--dark-blue);
    }

    .brand-list {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .brand-list img {
        width: 80px;
        height: 43px;
        flex-shrink: 0;
    }

    /*footer*/

    .site-footer {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        background: var(--white);
    }

    .inner-footer {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        background: var(--light-blue);
        color: var(--white);
    }

    .footer-nav,
    .footer-categories,
    .contact-info {
        flex: 1;
        max-width: 320px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-categories {
        background: var(--orange);
    }

    .contact-info {
        align-items: center;
        text-align: center;
        height: auto;
        min-height: 268px;
        overflow: visible;
    }

    .social-icons {
        display: flex;
        align-items: flex-start;
        gap: 25px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .social-icons a {
        line-height: 1.2;
    }

    .social-icons i {
        width: 81px;
        height: 80px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid var(--white);
        color: var(--white);
        text-align: center;
        font-size: 44px;
        line-height: 1;
    }

    .social-icons li::before {
        content: none;
    }

    .sub-footer {
        width: 100%;
        padding: 20px 0;
        background: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .copyright p {
        font-size: 12px;
        color: var(--black-3);
        text-align: center;
        margin: 0;
    }

    .footer-nav ul,
    .footer-categories ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav a,
    .footer-categories a {
        color: var(--white);
        text-decoration: none;
    }

    .footer-nav a:hover,
    .footer-categories a:hover {
        color: var(--gray);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .footer-nav li::before,
    .footer-categories li::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 6px;
        border-radius: 50px 0 0 50px;
        background: var(--black-3, rgba(0, 0, 0, 0.3));
        margin-right: 8px;
    }
}
