/*==========================================
    RESPONSIVE
==========================================*/

@media (max-width: 1050px) {
    .df-sidebar {
        width: 220px;
    }

    .df-main {
        margin-left: 220px;
    }

    .df-showcase,
    .df-vip-grid {
        grid-template-columns: 1fr;
    }

    .df-server-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .df-app {
        display: block;
    }

    .df-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(0,184,255,.14);
    }

    .df-sidebar__logo {
        margin-bottom: 16px;
    }

    .df-sidebar__logo img {
        width: 132px;
    }

    .df-sidebar__nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .df-sidebar__link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .df-sidebar__link:hover {
        transform: translateY(-2px);
    }

    .df-main {
        margin-left: 0;
    }

    .df-navbar {
        position: static;
        min-height: auto;
        padding: 18px 20px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .df-navbar > div {
        width: 100%;
    }

    .df-navbar .df-btn {
        width: 100%;
    }

    .df-content {
        padding: 16px;
    }

    .df-section {
        margin-top: 28px;
    }

    .df-hero {
        min-height: 330px;
        padding: 30px 22px;
    }

    .df-hero__title {
        font-size: clamp(38px, 12vw, 54px);
    }

    .df-hero__text {
        font-size: 16px;
    }

    .df-hero__buttons,
    .df-hero__buttons .df-btn {
        width: 100%;
    }

    .df-panel__header {
        padding: 16px 18px;
    }

    .df-panel__header h3 {
        font-size: 22px;
    }

    .df-panel__body,
    .df-vip-grid .df-panel__body {
        padding: 18px 14px;
    }

    .df-product__gallery,
    .df-vip-grid .df-product__gallery {
        gap: 8px;
    }

    .df-product__image,
    .df-vip-grid .df-product__image {
        width: min(42vw, 155px);
    }

    .df-switches {
        width: 100%;
        gap: 8px;
    }

    .df-switch {
        flex: 1;
        min-width: 0;
        padding: 11px 10px;
    }

    .df-panel__controls {
        padding: 14px;
        gap: 10px;
    }

    .df-panel__controls .df-btn {
        flex: 1;
        padding: 14px 16px;
    }

    .df-arrow-button {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .df-card,
    .df-tos-page {
        padding: 22px;
    }

    .df-cart {
        width: min(100%, 430px);
        max-width: 100%;
    }

    .df-cart-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .df-cart-item__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 430px) {
    .df-content {
        padding: 12px;
    }

    .df-server-stats {
        gap: 12px;
    }

    .df-stat {
        min-height: 58px;
        padding: 12px;
    }

    .df-panel__controls {
        flex-wrap: wrap;
    }

    .df-panel__controls .df-btn {
        order: 3;
        flex-basis: 100%;
    }

    .df-product__features {
        font-size: 14px;
    }

    .df-btn {
        padding: 14px 18px;
    }
}

/*==========================================
            CART RESPONSIVE
==========================================*/

@media (max-width: 560px) {
    .df-cart {
        width: 100%;
        border-left: 0;
    }

    .df-cart__header {
        padding: 19px 17px;
    }

    .df-cart__header h2 {
        font-size: 23px;
    }

    #cart-items {
        padding: 13px;
    }

    .df-cart-item {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 11px;
        padding: 11px;
    }

    .df-cart-item__image-wrap {
        min-height: 78px;
    }

    .df-cart-item__top,
    .df-cart-item__bottom {
        gap: 8px;
    }

    .df-cart-item__name {
        font-size: 15px;
    }

    .df-cart-item__unit-price {
        display: none;
    }

    .df-cart-item__price {
        font-size: 16px;
    }

    .df-cart-subscription-note {
        font-size: 11px;
    }

    .df-cart__footer {
        padding: 14px;
    }

    .df-cart-toast {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .df-cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .df-cart-item__image-wrap {
        min-height: 70px;
    }

    .df-cart-quantity {
        grid-template-columns: 29px 30px 29px;
    }

    .df-cart-quantity__button {
        width: 29px;
    }
}