:root {
    --primary-color: 118, 185, 0;
    --primary-color-light: 118, 185, 0;
    --primary-color-dark: 23, 22, 30;
    --secondary-color: 187, 37, 37;
    --secondary-color-dark: 115, 17, 45;
    --black: 0, 0, 0;
    --grey: 39, 37, 51;
    --light-grey: 244, 244, 244;
    --light-grey-2: 219, 219, 219;
    --white: 255, 255, 255;
    --warning: 210, 72, 40;
    --header-offset: 50;
    --button-gradient: linear-gradient(135deg, rgb(37, 110, 187) 0%, rgb(155, 11, 139) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;            
	scrollbar-color: rgb(var(--primary-color)) rgb(var(--black)); 
}

html, body {
    width: 100%;
    font-family: "Roboto", sans-serif;
    color: rgb(var(--white));
    background-color: rgba(var(--black), 0.7);
    overflow-x: hidden;
}

button {
    all: unset;
    cursor: pointer;
}

.bg-primary {
    background-color: rgb(var(--primary-color));
}

.no-scroll {
    position: fixed;
	width: 100%;
	overflow: hidden;
}

.hidden {
    display: none !important;
}

/* Loading screen styles */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgb(var(--black)) 0%, rgb(var(--grey)) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s cubic-bezier(.55,.06,.68,.19);
    & > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
#loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-wrap {
    perspective: 80vw;
    display: inline-grid;
    place-items: center;
    .loading-message {
        color: rgb(var(--grey));
        margin-top: 10px;
    }
}

.loader3d {
    width: 96px;
    aspect-ratio: 1;
    background: rgb(var(--primary-color));
    --loader-mask: url("/assets/frontend/emblem.svg");
    -webkit-mask: var(--loader-mask) center / contain no-repeat;
    mask: var(--loader-mask) center / contain no-repeat;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    animation: loader-spin-y 1.1s linear infinite;
    filter: drop-shadow(0 12px 20px rgba(var(--black),.15));
    position: relative;
}

.loader3d.dialog-loader {
    width: 48px;
}

@keyframes loader-spin-y {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-size: 56px;
    color: rgb(var(--white));
    font-weight: 700;
    text-align: center;
}
.loading-subtext {
    font-size: 18px;
    color: rgba(var(--white), 0.8);
    text-align: center;
    font-weight: 200;
    margin-top: 5px;
}

#main-content {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.55,.06,.68,.19);
}
#main-content.visible {
    opacity: 1;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    height: 100px;
    padding-right: 50px;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
    background: rgba(var(--black), 0.5);
    .menu-toggle {
        display: none;
    }
    &.compact {
        height: 50px;
        background-color: rgba(var(--black), 0.8);
        backdrop-filter: blur(20px);
        a:not(.logo) {
            font-size: 16px;
            padding: 15px 15px;
            color: rgba(var(--white), 0.8)
        }
        .logo {
            height: 30px;
        }
    }
    a:not(.logo) {
        font-size: 18px;
        padding: 15px 20px;
        background-color: transparent;
        transition: all 0.3s;
        border-bottom: 0px solid rgba(var(--white), 0);
        &:hover {
            color: rgb(var(--primary-color));
        }
        
    }
    .logo {
        font-size: 28px;
        font-weight: 800;
        position: absolute;
        left: 50px;
        transition: all 0.3s;
        color: transparent;
        display: block;
        width: 200px;
        height: 50px;
        -webkit-mask: url('/assets/frontend/logo-horizontal.svg') no-repeat 0 50%;
        -webkit-mask-size: contain;
        mask: url('/assets/frontend/logo-horizontal.svg') no-repeat 0 50%;
        mask-size: contain;
        background-color: rgb(var(--white));
    }
}

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

li {
    list-style: none;
}

.button {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    background-color: rgba(var(--black), 0.7);
    border: 3px solid rgba(var(--primary-color), 1);
    text-align: center;
    backdrop-filter: blur(10px);
    &:hover,
    &.contained {
        background-color: rgb(var(--primary-color));
        border: 3px solid rgba(var(--primary-color), 0);
        color: rgb(var(--black));
    }
    &.disabled {
        background-color: rgba(var(--black), 0.2);
        color: rgba(var(--black), 0.8);
        cursor: default;
        pointer-events: none;
    }
    &.dialog-button {
        font-size: 14px;
        color: rgb(var(--white));
        padding: 10px 0px;
        width: 100%;
        box-sizing: border-box;
        &.view-details {
            background-color: rgb(var(--light-grey));
            color: rgb(var(--black));
        }
        &:hover {
            background-color: rgb(var(--primary-color-dark));
            color: rgb(var(--white));
        }
        &.disabled {
            color: rgb(var(--grey));
        }
    }
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transform: translateY(0);
    will-change: transform;
}

.content {
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    box-sizing: border-box;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 100px;
}

header h1 {
    font-size: 48px;
    font-size: 48px;
    margin-bottom: 0;
    background: rgba(var(--black), 0.5);
    width: 100%;
    padding: 20px;
    backdrop-filter: blur(15px);
    b {
        font-family: Orbitron;
    }
}

header p {
    font-size: 20px;
    color: rgb(var(--white), 0.7);
    background: rgba(var(--black), 0.3);
    width: 100%;
    padding: 20px;
    backdrop-filter: blur(15px);
    margin-top: -20px;
}

.section {
    background: linear-gradient(135deg, rgb(var(--black)) 0%, rgb(var(--grey)) 100%);
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product {
    background: #1a1a1a;
    padding: 1rem;
    width: 280px;
    text-align: center;
}

.product img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.product h3 {
    margin-bottom: 0.5rem;
}

.cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #111;
}

.cta a {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #ff0066;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.cta a:hover {
    background: #ff3385;
}

.image-stack-container {
    width: 300px;
    height: 300px;
    perspective: 1000px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    will-change: transform;
    margin-right: 300px;
    margin-top: 100px;
}

.section-column {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 50%;
    &.left {
        align-items: flex-end;
    }
}

.stack-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 500px;
    height: 500px;
    object-fit: cover;
    transition: transform 0.22s cubic-bezier(.23,1.01,.19,.99);
    pointer-events: none;
    z-index: calc(10 - var(--i));
}

.section-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bundles-section {
    padding: 20px 50px 100px 50px;
    flex-wrap: wrap;
    min-width: 1000px;
    box-sizing: border-box;
    h1 {
        width: 100%;
        text-align: center;
        font-size: 48px;
        font-weight: 500;
        margin-top: 20px;
        color: rgba(var(--white), 0.9);
    }
    h2 {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
        font-size: 24px;
        font-weight: 200;
        color: rgba(var(--white), 0.8);
    }
    .bundle-card {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 250px;
        position: relative;
        margin-left: 50px;
        transform: scale(1);
        transition: all 0.3s ease-in-out;
        &::before {
            content: '';
            position: absolute;
            top: 10px;
            left: -20px;
            width: 260px;
            height: 160px;
            background-color: rgba(var(--black), 0.5);
        }
        &:hover {
            transform: scale(1.05);
            cursor: pointer;
        }
        h3 {
            background: rgb(var(--black));
            padding: 10px 20px;
            color: rgb(var(--primary-color));
            margin-left: -20px;
            margin-bottom: 10px;
            width: 298px;
            font-weight: 500;
            position: relative;
            b {
                font-family: Orbitron;
            }
        }
        .bundle-description {
            width: 100%;
            color: rgba(var(--white), 1);
            font-size: 14px;
            font-weight: 200;
            position: relative;
            .price {
                font-size: 18px;
                font-weight: 600;
                margin-top: 10px;
                color: rgb(var(--primary-color));
            }
        }
        img {
            width: 180px;
            position: absolute;
            right: -40px;
            top: 20px;
        }
    }
}

.builder-section {
    align-items: flex-start;
    position: relative;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/frontend/img/section-1.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.3;
    }
}

.builder-left {
    position: relative;
    width: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.builder-right {
    height: 100%;
    padding: 50px 0;
    color: rgb(var(--white));
    width: 800px;
}

.builder-header h2 {
    font-size: 56px;
    font-weight: 800;
    background: rgb(var(--primary-color));
    color: rgb(var(--black));
    margin-left: -20px;
    padding-inline: 20px;
    display: inline-block;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    display: none;
    width: 100%;
    .note {
        font-size: 10px;
        font-weight: 300;
    }
}

.builder-confirm-button {
    width: 100%;
    opacity: 0.2;
    cursor: default;
}

.builder-header h3 {
    font-size: 32px;
    font-weight: 200;
}

.builder-content {
    width: 800px;
    border: 3px solid rgb(var(--primary-color));
    background-color: rgba(var(--black), 0.3);
    margin-top: 20px;
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    &:not(.checkbox) {
        width: calc(50% - 10px);
        label {
            color: rgba(var(--grey), 0.6);
            font-size: 14px;
            position: absolute;
            top: 12px;
            left: 13px;
            pointer-events: none;
            font-style: italic;
            &.filled {
                color: rgb(var(--grey));
                background: linear-gradient(to bottom, rgb(var(--light-grey)) 0%, rgb(var(--light-grey)) 50%, rgb(var(--white)) 50%, rgb(var(--white)) 100%);
                font-size: 12px;
                top: -6px;
                left: 10px;
                padding-inline: 5px;
                font-style: normal;
            }
        }
    }
    &.checkbox {
        input {
            position: absolute;
            inline-size: 1px;
            block-size: 1px;
            margin: -1px;
            padding: 0;
            border: 0;
            clip: rect(0 0 0 0);
            clip-path: inset(50%);
            overflow: hidden;
            white-space: nowrap;
            &:checked + label::before {
                background: rgb(var(--primary-color));
            }
        }
        label {
            padding-inline-start: 24px;
            color: rgb(var(--grey));
            font-size: 14px;
            &::before {
                content: '';
                width: 11px;
                height: 11px;
                background: rgb(var(--white));
                border: 3px solid rgb(var(--white));
                position: absolute;
                left: 0px;
                top: 0px;
                border-radius: 100%;
                box-shadow: 0 0 0 1px rgb(var(--black), 0.2);
            }
        }
    }
    input {
        width: 100%;
        padding: 10px;
        border: 1px solid rgba(var(--black), 0.2);
        border-radius: 0;
        font-family: inherit;
        font-size: inherit;
    }
    &.error {
        input {
            border-color: rgb(var(--warning));
        }
        &::after {
            content: '\f06a';
            font-family: 'Font Awesome 6 Free';
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: rgb(var(--warning));
            font-weight: 700;
        }
    }
}

.custom-select {
    padding: 10px;
    width: calc((100% - 30px) / 4 - 1px);
    aspect-ratio: 1;
    background: rgba(var(--grey), 0.3);
    color: rgb(var(--white));
    display: flex;
    gap: 10px;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 3px dashed rgba(var(--white), 0.2);
    position: relative;
    &:hover{
        color: rgb(var(--white));
        i {
            color: rgb(var(--primary-color));
        }
        img {
            opacity: 1;
        }
    }
    &.selected {
        background-color: rgb(var(--white));  
        color: rgb(var(--grey));
        border: 3px solid rgb(var(--white));
        justify-content: flex-start;
        position: relative;
        z-index: 1;
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(135deg, rgba(var(--black), 0) 0%, rgb(var(--black)) 100%);
            border-radius: inherit;
            opacity: 0.2;
        }
        &:hover {
            background-color: rgb(var(--white));    
            color: rgb(var(--grey));
        }
        i {
            color: rgb(var(--primary-color));
        }
        span {
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
            color: rgb(var(--black));
            text-transform: uppercase;
        }
        img {
            opacity: 1;
        }
        .remove-item {
            position: absolute;
            right: 0px;
            top: 5px;
            width: auto;
            &:hover {
                i {
                    background-color: rgb(var(--warning));
                    color: rgb(var(--white));
                }
            }
            i {
                color: rgba(var(--black), 0.4);
                background: rgb(var(--light-grey));
                border-radius: 100%;
                width: 24px;
                height: 24px;
                border: 1px solid rgba(var(--black), 0.2);
                line-height: 22px;
                font-size: 12px;
                transition: all 0.1s ease-in-out;
            }
        }
        &.loading {
            background-color: rgb(var(--grey));
            loader3d {
                background-color: rgb(var(--white));
            }
        }
    }
    img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        opacity: 0.2;
    }
    span {
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
    }
    i {
        color: rgb(var(--white));
        font-size: 20px;
    }
    .ai-assistant {
        background: var(--button-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 20px;
        color: rgb(var(--white));
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
        &.loading,
        &:hover {
            background: linear-gradient(135deg, rgb(var(--white)) 0%, rgb(var(--light-grey)) 100%);
            color: rgb(var(--grey));
            &.loading {
                .loader3d {
                    background-color: rgb(var(--primary-color));
                }
            }
        }
        &.loading {
            pointer-events: none;
        }
        span {
            font-size: 14px;
        }
    }
}

.dialog-wrapper {
    background-color: rgba(var(--black), 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    backdrop-filter: blur(10px);
    &.visible {
        opacity: 1;
        visibility: visible;
        .dialog-window {
            max-width: 800px;
            max-height: 80%;
        }
    }
    .dialog-window {
        background-color: rgb(var(--light-grey));
        padding: 0px;
        width: 80%;
        max-width: 0px;
        height: auto;
        display: flex;
        flex-direction: column;
        max-height: 0px;
        position: relative;
        * {
            scrollbar-color: rgb(var(--primary-color)) rgb(var(--light-grey));
        }
        & > div {
            flex: 1;
            max-height: 80vh;
            h4 {
                font-size: 20px;
                font-weight: 300;
                color: rgb(var(--white));
                background-color: rgb(var(--primary-color));
                padding: 14px 20px;
                i {
                    margin-right: 10px;
                    margin-left: 10px;
                }
            }
            h3 {
                font-size: 24px;
                color: rgb(var(--primary-color));
            }
            .close-btn {
                position: absolute;
                right: 20px;
                top: 15px;
                cursor: pointer;
                font-size: 20px;
            }
            .dialog-container {
                padding: 10px 15px 10px 20px;
                margin: 10px 5px 10px 0px;   
                display: flex;
                flex: 1;
                flex-direction: row;
                flex-wrap: wrap;
                overflow-y: auto;
                overflow-x: hidden;   
            }
        }
    }
    .loading {
        .loading-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            .loading-text,
            .loading-subtext {
                color: rgb(var(--grey));
            }
        }
    }
}

.builder-category {
    display: flex;
    flex-direction: column;
    .builder-category-items {
        padding: 10px 15px 10px 20px;
        margin: 10px 5px 10px 0px;
        display: flex;
        flex: 1;
        flex-direction: row;
        flex-wrap: wrap;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 10px;
        & > div {
            box-sizing: border-box;
            border: 1px solid rgba(var(--black), 0.1);
            padding: 10px;
            width: calc((100% - 30px) / 4 - 1px);
            display: flex;
            gap: 10px;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            text-align: center;
            background-color: rgb(var(--white));
            transition: all 0.3s ease-in-out;
            cursor: pointer;
            &:hover {
                transform: scale(1.02);
                border: 1px solid rgb(var(--primary-color));
            }
            img {
                width: 100%;
                aspect-ratio: 1;
                object-fit: cover;
            }
            .description {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: space-between;
                .name {
                    color: rgb(var(--black));
                    font-weight: 300;
                    margin-bottom: 5px;
                }
                .price {
                    color: rgb(var(--primary-color));
                    font-weight: 700;
                }
            }
            .actions {
                display: flex;
                flex-direction: column;
                gap: 5px;
                width: 100%;
                .button {
                    font-size: 14px;
                    color: rgb(var(--white));
                    padding: 10px 0px;
                    width: 100%;
                    box-sizing: border-box;
                    &.view-details {
                        background-color: rgb(var(--light-grey));
                        color: rgb(var(--black));
                    }
                    &:hover {
                        background-color: rgb(var(--primary-color-dark));
                        color: rgb(var(--white));
                    }
                }
            }
        }
    }
}

.checkout {
    display: flex;
    flex-direction: column;
    .checkout-header {
        display: flex;
        flex-direction: row;
        padding: 10px 20px;
        background-color: rgb(var(--grey));
        align-items: center;
        justify-content: space-between;
        .checkout-step-buttons {
            display: flex;
            flex-direction: row;
            gap: 5px;
            .button {
                font-size: 16px;
                color: rgb(var(--white));
                padding: 10px 20px;
                &.disabled {
                    background-color: rgba(var(--white), 0.2);
                    color: rgba(var(--white), 0.5);
                }
            }
        }
    }
    .checkout-content {
        overflow-y: scroll;
        overflow-x: hidden;
        h5 {
            width: 100%;
            text-align: center;
            font-size: 24px;
            color: rgb(var(--primary-color));
            margin: 10px 0;
        }
        .order-os {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 10px;
            .order-os-item {
                box-sizing: border-box;
                border: 1px solid rgba(var(--black), 0.1);
                padding: 10px;
                width: calc((100% - 30px) / 4 - 1px);
                display: flex;
                gap: 10px;
                flex-direction: column;
                align-items: center;
                justify-content: flex-end;
                text-align: center;
                background-color: rgb(var(--white));
                transition: all 0.3s ease-in-out;
                &:hover {
                    transform: scale(1.02);
                    border: 1px solid rgb(var(--primary-color));
                }
                img {
                    width: 100px;
                    aspect-ratio: 1;
                    object-fit: cover;
                }
                .item-name {
                    color: rgb(var(--black));
                    font-weight: 300;
                    margin-bottom: 5px;
                }
                .price {
                    color: rgb(var(--primary-color));
                    font-weight: 700;
                }
                .button {
                    font-size: 14px;
                    color: rgb(var(--white));
                    padding: 10px 0px;
                    width: 100%;
                    box-sizing: border-box;
                    &.view-details {
                        background-color: rgb(var(--light-grey));
                        color: rgb(var(--black));
                    }
                    &:hover {
                        background-color: rgb(var(--primary-color-dark));
                        color: rgb(var(--white));
                    }
                    &.disabled {
                        color: rgb(var(--grey));
                        &:hover {
                            background-color: rgba(var(--black), 0.2);
                        }
                    }
                }
            }   
        }
        .order-items {
            display: flex;
            flex-direction: column;
            background-color: rgba(var(--white), 0.1);
            width: 100%;
            gap: 2px;
            .order-item {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 10px;
                gap: 20px;
                background-color: rgb(var(--white));
                &:nth-child(odd) {
                    background-color: rgba(var(--white), 0.6);
                }
                .item-image {
                    width: 36px;
                    height: 36px;
                    scale: 1.2;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 5px;
                    }
                }
                .item-name {
                    font-size: 14px;
                    color: rgb(var(--grey));
                    flex: 1;
                }
                .item-price {
                    font-size: 14px;
                    color: rgb(var(--primary-color));
                }
            }
            .total {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 2px;
                .total-row {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px;
                    font-size: 14px;
                    color: rgb(var(--grey));
                    background: rgb(var(--white));
                    width: 100%;
                    &:nth-child(odd) {
                        background-color: rgba(var(--white), 0.6);
                    }
                    &:last-child {
                        font-size: 18px;
                        font-weight: 800;
                        color: rgb(var(--primary-color));
                    }
                }
            }
        }
        .order-build-informations {
            color: rgb(var(--grey));
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
            padding: 20px;
            img {
                width: 240px;
                height: 240px;
            }
            .build-informations {
                display: flex;
                flex-direction: column;
                gap: 20px;
                p {
                    font-size: 14px;
                    line-height: 1.3;
                    b {
                        color: rgb(var(--primary-color-dark));
                        font-weight: 800;
                    }
                }
            }
        }

        .shipping-details {
            display: flex;
            flex-direction: column;
            gap: 14px;
            width: 100%;
            .form-group {
                width: 100%;
            }
        }
    }
}

.order-summary.dialog-container {
    .stepper {
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        padding-inline: 40px;
        margin-top: 40px;
        margin-bottom: 80px;
        & > div {
            position: relative;
            .stepper-circle {
                background-color: rgb(var(--grey));
                width: 30px;
                height: 30px;
                border-radius: 100%;
                &.completed {
                    background-color: rgb(var(--primary-color));
                }
            }
            .stepper-label {
                color: rgb(var(--grey));
                position: absolute;
                width: 120px;
                text-align: center;
                left: -45px;
                font-size: 14px;
                margin-top: 10px;
                &.completed {
                    color: rgb(var(--primary-color));
                }
            }
            &.stepper-line {
                background-color: rgb(var(--grey));
                height: 5px;
                width: 100%;
                &.completed {
                    background-color: rgb(var(--primary-color));
                }
            }
            .stepper-date {
                color: rgba(var(--black), 0.6);
                font-size: 10px;
                position: absolute;
                width: 100px;
                text-align: center;
                left: -35px;
                top: -15px;
                font-weight: 900;
            }
        }
    }
    .fa-circle-check {
        font-size: 70px;
        color: rgba(var(--primary-color), 0.6);
        width: 100%;
        text-align: center;
    }
    h3 {
        width: 100%;
        text-align: center;
        margin-top: 10px
    }
    h4.status-info {
        background-color: transparent;
        width: 100%;
        color: rgb(var(--grey));
        padding: 0;
        text-align: center;
    }
    h5.estimated-delivery,
    h5.shipping-address {
        font-weight: 800;
        font-size: 16px;
        background-color: rgb(var(--primary-color));
        color: rgb(var(--white));
        padding: 10px;
        b {
            font-weight: 400;
            color: rgba(var(--white), 0.8);
        }
    }
    h5.shipping-address {
        margin-top: -7px;
        color: rgb(var(--primary-color));
        background: rgb(var(--white));
        b {
            color: rgb(var(--grey));
        }
    }
    .payment-methods {
        width: 100%;
        background-color: rgb(var(--white));
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        color: rgb(var(--grey));
        border: 1px solid rgba(var(--black), 0.1);
        & > div {
            width: 500px;
            margin: 0 auto;
            h5 {
            margin-top: 0px;
            }
            p {
                border-bottom: 2px dotted rgba(var(--black), 0.1);
                padding-block: 6px;
                text-align: center;
                &:first-of-type {
                    padding-bottom: 20px;
                }
                b {
                    text-align: left;
                    display: inline-block;
                    width: 180px;
                }
                span {
                    display: inline-block;
                    width: 180px;
                    text-align: right;
                }
            }
        }
    }
    .order-items {
        margin-top: 10px;
    }
}

.product-detail {
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--light-grey));
    .product-detail-content {
        overflow-y: scroll;
        overflow-x: hidden;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 15px 10px 20px;
        margin: 10px 5px 10px 0px;
        gap: 10px;
        color: rgb(var(--grey));
        h5 {
            width: 100%;
            font-size: 28px;
            color: rgb(var(--primary-color));
        }
        .product-image {
            width: calc(40% - 10px);
            display: flex;
            flex-direction: column; 
            gap: 10px;
            img {
                box-sizing: border-box;
                width: 100%;
            }
            .price-wrapper {
                text-align: center;
                background-color: rgba(var(--black), 0.1);
                padding: 10px;
                .price {
                    color: rgb(var(--grey));
                    width: 100%;
                    font-weight: 600;
                }
            }
        }
        .product-info {
            width: 60%;
            color: rgb(var(--grey));
            .description {
                background-color: rgba(var(--black), 0.05);
                padding: 20px;
                font-size: 12px;
                line-height: 1.5;
                strong {
                    color: rgb(var(--white));
                    margin-right: 5px;
                }
                li {
                    display: flex;
                    padding-block: 2px;
                    &::before {
                        content: "• ";
                        color: rgb(var(--primary-color));
                        margin-right: 5px;
                    }
                    &:not(:last-child){
                        border-bottom: 1px solid rgba(var(--white), 0.2);
                    }
                }
                ul {
                    padding: 10px;
                    background-color: rgb(var(--grey));
                    color: rgba(var(--white), 0.8);
                    line-height: 1.8;
                    margin-top: 10px;
                }
            }
        }
    }
}

.brands-section {
    .brand-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 70px;
        .brand-carousel-track {
            display: flex;
            width: max-content;
            animation: scroll-left 40s linear infinite;
            .brand-carousel-item {
                flex: 0 0 auto;
                margin: 0 30px;
                display: flex;
                align-items: center;
                img {
                    max-height: 100px;
                    max-width: 200px;
                    object-fit: contain;

                }
            }
        }
    }
    h2 {
        width: 100%;
        text-align: center;
        font-size: 48px;
        font-weight: 500;
        padding-top: 20px;
        margin-top: 0px;
        color: rgba(var(--white), 0.9);
    }
    h3 {
        text-align: center;
        font-size: 24px;
        font-weight: 200;
        color: rgba(var(--white), 0.8);
        width: 650px;
        margin-inline: auto;
        margin-bottom: 0px;
        margin-bottom: 20px;
    }
}

.divider {
    width: 600px;
    margin-inline: auto;
    margin-bottom: 20px;
    height: 10px;
    background: linear-gradient(to right, transparent, rgb(var(--primary-color))) left center / 48% 40% no-repeat,
        radial-gradient(circle, rgb(var(--primary-color)) 60%, transparent 65%) center center / 10px 10px no-repeat,
        linear-gradient(to right, rgb(var(--primary-color)), transparent) right center / 48% 40% no-repeat;
    background-repeat: no-repeat;
    display: block;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

footer {
    padding: 20px;
    font-size: 14px;
    color: rgba(var(--white), 0.5);
    text-align: center;
    line-height: 24px;
    background: linear-gradient(135deg, rgb(var(--black)) 30%, rgb(var(--grey)) 100%);
    .contact-info {
        margin-inline: auto;
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;
        margin-top: 50px;
        gap: 30px;
        justify-content: center;
        div {
            text-align: left;
            h5 {
                color: rgb(var(--primary-color), 1);
                font-size: 18px;
                font-weight: 300;
                margin-bottom: 10px;
            }
            .social-media {
                display: flex;
                flex-direction: row;
                gap: 10px;
                margin-top: 10px;
                justify-content: center;
                a {
                    color: rgb(var(--white), 0.7);
                    font-size: 20px;
                    transition: all 0.3s ease-in-out;
                    &:hover {
                        color: rgb(var(--primary-color));
                    }
                }
            }
        }
    }
}

.process-section {
    background: transparent;
    .custom-pc-section {
        position: relative;
        overflow: hidden;
        color: white;
        padding: 80px 20px 140px 20px;
        &::before {
            content: "";
            position: absolute;
            top: -30%; left: 0; right: 0; bottom: -30%;
            background-image: url('/assets/frontend/img/process-bg.jpg');
            background-size: cover;
            background-position: center center;
            z-index: -2;
            will-change: transform;
            transform: translateY(var(--parallax-offset, 0));
            opacity: 0.15;
            transition: transform 0.1s ease-out, opacity 0.1s ease-out;
        }
        .content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            .main-heading {
                width: 100%;
                text-align: center;
                font-size: 48px;
                font-weight: 500;
                padding-bottom: 70px;
                margin-top: 0px;
                color: rgba(var(--white), 0.9);
            }
            .steps {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 10px;
                .step {
                    flex: 1 1 180px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    opacity: 0;
                    transform: translateY(20px);
                    transition: opacity 0.8s ease, transform 0.8s ease;
                    backdrop-filter: blur(20px);
                    background-color: rgba(var(--black), 0.3);
                    padding: 20px;
                    &.animate.visible {
                        opacity: 1 !important;
                        transform: translateY(0) !important;
                    }
                    .step-icon {
                        font-size: 48px;
                        margin-bottom: 15px;
                        transition: transform 0.3s ease;
                    }
                    &:hover {
                        .step-icon {
                            transform: translateY(-5px);
                        }
                    }
                    .step-title {
                        font-size: 18px;
                        font-weight: 600;
                        margin-bottom: 8px;
                        color: rgb(var(--primary-color));
                    }
                    .step-desc {
                        font-size: 14px;
                    }
                }
            }
        }
        .button {
            top: 50px;
            position: relative;
        }
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
}

@media (max-width: 768px) {
    body {
        font-size: 3.5vw;
    }
    .loader3d {
        width: 40vw;
        &.dialog-loader {
            width: 20vw;
        }
    }
    header {
        gap: 6vw;
        padding-top: 30vw;
        h1 {
            font-size: 10vw;
            line-height: 10vw;
            padding: 6vw;
        }
        p {
            font-size: 5vw;
            padding: 6vw;
            margin-top: -6vw;
        }
    }

    .button {
        padding: 5vw 10vw;
        font-size: 6vw;
        border-width: 1vw;
        &.contained {
            border-width: 1vw;
        }
        &.dialog-button {
            font-size: 3.5vw;
            padding: 2vw 0;
        }
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    nav {
        height: 30vw;
        padding-right: 5vw;
        .menu-toggle {
            display: flex;
            font-size: 7vw;
            transition: all 0.3s;
            cursor: pointer;
        }
        .navigation {
            display: flex;
            flex-direction: column;
            background: rgb(var(--grey));
            position: fixed;
            top: 30vw;
            right: -100%;
            transition: all 0.3s;
            width: 100%;
            &.visible {
                right: 0;
            }
            a {
                font-size: 6vw;
                padding: 5vw 10vw;
                text-align: center;
                &:not(:last-child) {
                    border-bottom: 0.1vw solid rgba(var(--white), 0.05);
                }
            }
        }
        .logo {
            left: 5vw;
            width: 50vw;
            height: 20vw;
        }
        &.compact {
            height: 20vw;
            .logo {
                width: 40vw;
                height: 8vw;
            }
            .navigation {
                top: 20vw;
                a {
                    font-size: 6vw;
                    padding: 5vw 10vw;
                }
            }
        }
    }

    .form-group {
        &.checkbox {
            label {
                font-size: 3.5vw;
                padding-inline-start: 7vw;
                &::before {
                    width: 3vw;
                    height: 3vw;
                    border: 1vw solid rgb(var(--white));
                    box-shadow: 0 0 0 0.3vw rgb(var(--black), 0.2);
                    top: -0.3vw;
                }
            }
        }
        &:not(.checkbox) {
            label {
                font-size: 3.5vw;
                top: 3.5vw;
                left: 4vw;
                &.filled {
                    font-size: 3vw;
                    top: -1.7vw;
                    left: 3vw;
                    padding-inline: 1vw;
                }
            }
        }
        input {
            padding: 3vw;
            border: 0.2vw solid rgba(var(--black), 0.2);
        }
    }

    .dialog-wrapper {
        &.visible {
            .dialog-window {
                max-width: 90vw;
                height: calc(100% - 10vw);
                max-height: calc(100% - 10vw);
                width: 90vw;
                & > div {
                    max-height: 100%;
                    .close-btn {
                        right: 5vw;
                        top: 4vw;
                        font-size: 5.5vw;
                    }
                    h4 {
                        font-size: 5.5vw;
                        padding: 4vw 5vw;
                    }
                    h3 {
                        font-size: 5vw;
                    }
                }
                .loading-content {
                    height: calc(100% - 15vw);
                    padding: 0;
                }
                .dialog-container {
                    padding: 2vw 4vw 2vw 5vw;
                    margin: 3vw 1vw 3vw 0;
                    gap: 2vw;  
                }
                .order-summary.dialog-container {
                    .fa-circle-check {
                        font-size: 24vw;
                        margin-top: 10vw;
                    }
                    h3 {
                        margin-top: 3vw;
                    }
                    & > h4.status-info {
                        font-size: 4vw;
                        padding: 0;
                    }
                    h5.estimated-delivery,
                    h5.shipping-address {
                        font-size: 3.5vw;
                        margin: 3vw 0;
                        border-width: 0.2vw;
                        padding: 3vw;
                        b {
                            display:block;
                        }
                    }
                    h5.shipping-address {
                        margin-top: -3vw;
                    }
                    .stepper {
                        padding: 17vw 7vw;
                        margin: 0;
                        .stepper-date {
                            font-size: 2.5vw;
                            width: 20vw;
                            left: -8vw;
                            top: 6vw;
                        }
                        .stepper-circle {
                            width: 4vw;
                            height: 4vw;
                        }
                        .stepper-label {
                            width: 20vw;
                            left: -8vw;
                            font-size: 3.5vw;
                            margin-top: 1.5vw;
                            &.completed {
                                margin-top: 6vw;
                            }
                        }
                        .stepper-line {
                            height: 1vw;
                        }
                        & > div.stepper-even{
                            .stepper-date {
                                top: -4.5vw;
                            }
                            .stepper-label {
                                bottom: 5.5vw;
                                &.completed {
                                    bottom: 9vw;
                                }
                            }
                        }
                    }
                    .payment-methods {
                        padding: 5vw;
                        margin-top: 5vw;
                        margin-bottom: 5vw;
                        font-size: 3vw;
                        border-width: 0.2vw;
                        & > div {
                            width: 100%;
                        }
                        h5 {
                            font-size: 5vw;
                            margin: 3vw 0;
                        }
                        p {
                            padding-block: 2vw;
                            border-width: 0.7vw;
                            white-space: nowrap;
                            &:first-of-type {
                                padding-bottom: 5vw;
                                white-space: wrap;
                            }
                            b {
                                width: 30.1vw;
                            }
                            span {
                                width: 35vw;
                            }
                        }
                    }
                }
            }
        }
    }

    .bundles-section {
        padding: 10vw 5vw;
        min-width: auto;
        h1 {
            font-size: 10vw;
            margin-top: 5vw;
            line-height: 10vw;
        }
        h2 {
            margin-bottom: 10vw;
            font-size: 6vw;
            margin-top: 3vw;
            line-height: 8vw;
        }
        .bundle-card {
            height: 50vw;
            margin-bottom: 10vw;
            width: 100%;
            margin-left: 0;
            &::before {
                top: 0;
                left: 0;
                width: 100%;
                height: 50vw;
            }
            h3 {
                padding: 3vw 5vw;
                margin-left: 0vw;
                margin-bottom: 3vw;
                width: 100%;
                font-size: 7vw;
                height: 15vw;
            }
            img {
                width: 50vw;
                right: -10vw;
                top: 10vw;
            }
            .bundle-description {
                font-size: 3.7vw;
                line-height: 5vw;
                padding-left: 5vw;
                margin-top: -5vw;
                .price {
                    font-size: 5vw;
                    margin-top: 2vw;
                }
            }
        }
    }

    .builder-section {
        .builder-left {
            display: none;
        }
        .builder-right {
            padding: 10vw 5vw;
            width: 100%;
            .builder-header {
                h2 {
                    font-size: 13vw;
                    margin-left: -5vw;
                    padding-left: 5vw;
                }
                h3 {
                    font-size: 7vw;
                }
            }
            .builder-content {
                width: 100%;
                border-width: 1vw;
                margin-top: 5vw;
                padding: 3vw;
                gap: 1vw;
                .custom-select {
                    border-width: 1vw;
                    padding: 2vw;
                    gap: 2vw;
                    width: calc((100% - 1vw) / 2 - 1px);
                    &.selected {
                        border-width: 1vw;
                        span {
                            padding: 0;
                            font-size: 3.5vw;
                        }
                        .remove-item {
                            right: 2vw;
                            top: 2vw;
                            i {
                                width: 8vw;
                                height: 8vw;
                                border: 0.2vw solid rgba(var(--black), 0.2);
                                line-height: 7.5vw;
                                font-size: 4vw;
                            }
                        }
                    }
                    img {
                        width: 100%;
                        height: 25vw;
                        object-fit: contain;
                    }
                    span {
                        font-size: 4vw;
                    }
                    .ai-assistant {
                        padding: 2vw 3vw;
                        span {
                            font-size: 3vw;
                        }
                    }
                }
                .total-price {
                    font-size: 6vw;
                    font-weight: 700;
                    margin-top: 5vw;
                    .note {
                        font-size: 3.5vw;
                    }
                }
            }
        }
    }
    .builder-category {
        .builder-category-items {
            padding: 2vw 4vw 2vw 5vw;
            margin: 3vw 1vw 3vw 0;
            gap: 2vw;
            & > div {
                border-width: 0.5vw;
                padding: 2vw;
                width: calc((100% - 2vw) / 2 - 1px);
                gap: 2vw;
                .description {
                    .name {
                        margin-bottom: 1vw;
                    }
                }
                .actions {
                    gap: 1vw;
                    .button {
                        font-size: 3.5vw;
                        padding: 2vw 0;
                    }
                }
            }
        }
    }
    .product-detail {
        .product-detail-content {
            padding: 2vw 4vw 2vw 5vw;
            margin: 3vw 1vw 3vw 0;
            gap: 2vw;
            h5 {
                font-size: 6vw;
            }     
            .product-image {
                width: 100%;
                gap: 2vw;
                .price-wrapper {
                    padding: 3vw;
                }
                .no-image {
                    display: none;
                }
            }    
            .product-info {
                width: 100%;
                .description {
                    padding: 5vw;
                    font-size: 3.5vw;
                    ul {
                        padding: 2vw;
                        margin-top: 2vw;
                        li {
                            padding-block: 1vw;
                            &:not(:last-child){
                                border-bottom: 0.2vw solid rgba(var(--white), 0.2);
                            }
                        }
                    }
                }
            }   
        }
    }
    .checkout {
        .checkout-header {
            padding: 2vw 5vw;
            .checkout-step-buttons {
                gap: 1vw;
                .button {
                    font-size: 3.5vw;
                    padding: 2vw 4vw;
                }
            }
        }
        .checkout-content {
            .order-os {
                gap: 2vw;
                .order-os-item {
                    border-width: 0.5vw;
                    padding: 2vw;
                    width: calc((100% - 2vw) / 2 - 1px);
                    gap: 2vw;
                    .item-name {
                        margin-bottom: 1vw;
                    }
                    .button {
                        font-size: 3.5vw;
                        padding: 2vw 0;
                    }
                }
            }
            .order-build-informations {
                flex-direction: column;
                align-items: center;
                gap: 5vw;
                padding: 0;
                img {
                    width: 80vw;
                    height: 80vw;
                }
                .build-informations {
                    gap: 5vw;
                    padding-inline: 5vw;
                    p {
                        font-size: 4vw;
                    }
                }
            }
            .order-items {
                gap: 1vw;
                .order-item {
                    padding: 3vw;
                    gap: 5vw;
                    .item-image {
                        width: 9vw;
                        height: 9vw;
                    }
                    .item-name {
                        font-size: 3.5vw;
                    }
                    .item-price {
                        font-size: 3.5vw;
                        width: 15vw;
                        text-align: right;
                    }
                }
                .total {
                    margin-top: 5vw;
                    gap: 1vw;
                    .total-row {
                        padding: 3vw;
                        font-size: 3.5vw;
                          &:last-child {
                            font-size: 4.5vw;
                            padding: 5vw 3vw;
                        }
                    }
                }
            }
        }
    }
    .brands-section {
        h2 {
            font-size: 7vw;
            padding-top: 10vw;
        }
        h3 {
            font-size: 5vw;
            width: 90vw;
            margin-bottom: 5vw;
        }
        .brand-carousel-wrapper {
            padding-top: 5vw;
            padding-bottom: 10vw;
            .brand-carousel-item {
                margin: 0 8vw;
                img {
                    max-height: 20vw;
                    max-width: 40vw;
                }
            }
        }
    }
    .divider {
        width: 80vw;
        height: 2vw;
        margin-bottom: 5vw;
        background: linear-gradient(to right, transparent, rgb(var(--primary-color))) left center / 48% 40% no-repeat, radial-gradient(circle, rgb(var(--primary-color)) 60%, transparent 65%) center center / 2vw 2vw no-repeat, linear-gradient(to right, rgb(var(--primary-color)), transparent) right center / 48% 40% no-repeat;
    }

    footer {
        padding: 5vw;
        font-size: 3vw;
        line-height: 5vw;
        .contact-info {
            margin-bottom: 8vw;
            flex-direction: column;
            margin-top: 10vw;
            gap: 5vw;
            align-items: center;
            div { 
                text-align: center;
                h5 {
                    font-size: 5vw;
                    margin-bottom: 2vw;
                }
                .social-media {
                    gap: 3vw;
                    margin-top: 3vw;
                    a {
                        font-size: 6vw;
                    }
                }
            }
        }
    }
    .process-section {
        .custom-pc-section {
            padding: 20vw 5vw 40vw 5vw;
            .content {
                .main-heading {
                    font-size: 8vw;
                    padding-bottom: 12vw;
                    margin-top: 0;
                }
                .steps {
                    flex-direction: column;
                    gap: 3vw;
                    .step {
                        flex: 1 1 45vw;
                        padding: 5vw;
                        .step-icon {
                            font-size: 10vw;
                            margin-bottom: 3vw;
                        }
                        .step-title {
                            font-size: 5vw;
                            margin-bottom: 2vw;
                        }
                        .step-desc {
                            font-size: 3.5vw;
                        }
                    }
                }
            }
            .button {
                top: 10vw;
            }
        }
    }
}