* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --primary-color: #FFC107;
    --secondary-color: #343A40;
    --text-color: #FFF;
    --box-bg-color: #FFF;
    --box-border-radius: 5px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition-time: 0.3s;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #0f1218;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
}

.logo img:hover {
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 0 9px;
}

.navbar a:hover {
    color: #fff
}

.navbar .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.navbar .nav-icons .icon {
    color: #f5a623;
    font-size: 24px;
}

.navbar .nav-icons .profile {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1c2033;
    padding: 7px 15px;
    border-radius: 5px;
    min-width: 130px;
}

.navbar .nav-icons .profile img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.navbar .nav-icons .profile .name h2 {
    color: #ffc80a;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.navbar .nav-icons .profile .name p {
    color: #bdbdbd;
    font-size: 12px;
    font-weight: 300;
}

.navbar .nav-cart {
    background-color: #1c2033;
    padding: 7px 15px;
    border-radius: 5px;
    padding: 10px 15px;
    border-radius: 5px;
}

.navbar .nav-cart .icon {
    color: #ffc80a;
    font-size: 24px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons .sign-up {
    background: rgb(254,182,7);
    background: linear-gradient(0deg, rgba(254,182,7,1) 3%, rgba(253,205,8,1) 76%);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.auth-buttons .sign-in {
    background-color: #141414;
    color: #ececec;
    border: Solid 1px #ffc80a;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.auth-buttons .sign-up:hover {
    background: #141414;
    color: #ececec;
    border: Solid 1px #ffc80a;
}

.auth-buttons .sign-in:hover {
    background: rgb(254,182,7);
    background: linear-gradient(0deg, rgba(254,182,7,1) 3%, rgba(253,205,8,1) 76%);
    color: #111;
    border: none;
}

.auth-buttons-2 {
    display: flex;
    gap: 10px;
}

.auth-buttons-2 button {
    background-color: #0f1218;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.3s;
}

.auth-buttons-2 .sign-in button {
    background-color: #141414;
    color: #ececec;
    border: Solid 1px #ffc80a;
    cursor: pointer;
}

.auth-buttons-2 button:hover {
    background-color: #1c2033;
    color: #ececec;
    border: Solid 1px #ececec;
}

.common-btn {
    background: rgb(254, 182, 7);
    background: linear-gradient(0deg, rgba(254, 182, 7, 1) 3%, rgba(253, 205, 8, 1) 76%);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.common-btn:hover {
    background: #1c2033;
    color: #ececec;
    border: Solid 1px #ffc80a;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #ffc80a;
    display: block;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;
}
.hamburger-active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
    transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-5px) rotate(90deg);
}

.menubar {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    width: 70%;
    height: 100vh;
    padding: 20% 0;
    background: #0f1218;
    transition: all 0.4s ease-in;
    z-index: 999;
}
.menubar .profile {
    text-align: center;
    border-bottom: 1px solid #21262d;
    margin-bottom: 30px;
    width: 100%;
    cursor: pointer;
}
.menubar .profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.menubar .profile h2 {
    margin: 10px 0 5px;
    font-size: 18px;
}
.menubar .profile p {
    margin-bottom: 40px;
    font-size: 14px;
    color: #8b949e;
}
.menubar .menu {
    width: 100%;
    padding-left: 30px;
}
.menubar .menu a {
    display: block;
    padding: 10px 30px;
    color: #c9d1d9;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}
.menubar .menu i {
    margin-right: 20px;
    color: #ffc80a;
}

.active {
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
    padding: 0;
    list-style: none;
}
.menubar ul li {
    margin-bottom: 32px;
}

.menubar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 95%;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
}

.menubar ul li a:hover {
    background-color: #141628;
}

.navbar .left-icon {
    display: none;
}
.nav-minus-margin {
    margin-right: -5em;
}

@media screen and (max-width: 900px) {
    .navbar .nav-icons {
        display: none;
    }
    .navbar .nav-cart {
        display: none;
    }
    .navbar .left-icon .nav-cart {
        display: block;
    }
    header {
        padding: 20px 20px;
    }
    .navbar .left-icon {
        display: block;
    }
    .navbar .menubar .nav-icons {
        display: block;
    }
    .hamburger {
        display: block;
    }
    nav ul {
        display: none;
    }
    .navbar .auth-buttons {
        display: none;
    }
    .menubar .auth-buttons {
        display: grid;
        padding: 45px;
    }
    .nav-minus-margin {
        margin-right: 0;
    }
}

footer {
    background-color: #0f1218;
    color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
}

.footer-trustpilot, .footer-payments, .footer-social {
    text-align: center;
}

.footer-trustpilot p, .footer-payments p, .footer-social p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-payments img, .footer-social img {
    margin: 0 5px;
    height: 26px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #333;
    align-items: center;
}

.footer-logo {
    margin: 34px 0 0 0;
    width: 100%;
    justify-content: center;
}

.footer-logo img {
    width: 240px;
    margin-left: 35px;
}

.footer-links {
    display: flex;
    width: 60%;
    flex: 1 1 200px;
    margin: 10px;
    justify-content: center;
}

.footer-links-column {
    margin: 0px 50px;
}

.footer-links-column P {
    padding-bottom: 2px;
}

.footer-links-column h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-links-column a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-links-column a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
}

.footer-contact h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-contact a {
    margin-bottom: 5px;
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.footer-email:hover {
    text-decoration: underline;
}


.footer-contact {
    padding-left: 30px;
}

.footer-bottom-info {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #333;
}

.footer-bottom-info a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom-info a:hover {
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 100px;
}

.random-text {
    color: #ffc400;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
}

.form-basin form {
    margin: auto;
    max-width: 600px;
}

.form-basin label {
    display: block;
    margin-bottom: 8px;
}

.form-basin .input-container {
    position: relative;
    display: flex;
}

.form-basin input,
.form-basin textarea,
.form-basin select {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    font-family: inherit;
    border: 1px solid #ffc107;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-basin input:focus,
.form-basin textarea:focus,
.form-basin select:focus {
    border-color: #007bff;
    outline: none;
}

.form-basin form button {
    background-color: #ffc107;
    color: #111;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    width: max-content;
    height: 40px;
    margin-left: 5px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.form-basin button:hover {
    filter: brightness(85%);
}

.form-basin ::placeholder {
    font-family: inherit;
    opacity: 0.7;
}

.form-basin input[type='checkbox'] {
    margin-right: 8px;
    width: auto;
}

.form-basin fieldset {
    border: 1px solid #ffc107;
    padding: 10px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.form-basin legend {
    padding: 0 10px;
    font-weight: bold;
    font-size: 1em;
}

.form-basin input[type='radio'] {
    margin-right: 8px;
    margin-top: 4px;
    width: auto;
    cursor: pointer;
}

.form-basin .radio-label {
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
}

.form-basin .radio-group {
    margin-bottom: 16px;
}

.form-basin .donation-type {
    margin-bottom: 16px;
}

.form-basin .donation-type span {
    font-weight: 500;
    margin-right: 10px;
}

.form-basin input[type='number'] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-basin input[type='number']::-webkit-inner-spin-button,
.form-basin input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-basin .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.form-basin .form-check-input {
    margin-top: 14px;
    margin-right: 10px;
    cursor: pointer;
}

.form-basin .form-check-label {
    align-self: auto;
    margin-bottom: 0;
    cursor: pointer;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    .footer-logo {
        margin: 0;
        align-items: center;
    }
    .footer-logo img {
        width: 240px;
        margin-bottom: -100px;
    }
    .footer-links {
        flex-direction: column;
        text-align: center;
        width: auto;
        margin: 0;
    }
    .footer-links .footer-links-column {
        flex: 1 1 200px;
        margin: 0;
        padding: 0;
        max-height: 170px;
    }
    .footer-links .footer-contact {
        margin: 0;
        padding: 0;
    }
    .footer-payments img, .footer-social img {
        margin: 0 5px;
        height: 20px;
    }
    .close-tab-button {
        font-size: 2em;
        color: #ffc400;
        border-radius: 5px;
        cursor: pointer;
        text-align: end;
    }
    .close-tab-button:hover {
        font-size: 1em;
        color: #ffc80a;
        background: #0e1019;
        border-radius: 5px;
        border: solid 1px #ffc80a;
    }
}

.nav-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff0000;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cart .icon {
    position: relative;
}