html {
    /* COLORS */
    --black: #222222;
    --gray: #3C3C3C;
    --white: #F8F8F8;
    --red: #FF5A5F;
    --purple: #904ED3;

    /* FONT WEIGHT */
    --medium: 500;
    --semibold: 600;

    font-family: 'Figtree', sans-serif;
    scroll-behavior: smooth;

    background-color: var(--black);
    color: var(--white);
}

/* MAIN */
body {
    padding-top: 60px;
    margin: 0;
}

p {
    margin: 0;
}

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

ul {
    padding: 0;
}

h1 {
    margin: 0;
    font-size: 32px;
    font-weight: var(--semibold);
}

h2 {
    font-size: 24px;
    font-weight: var(--medium);
}

button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.red {
    color: var(--red);
}

.bold {
    font-weight: var(--semibold);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 67;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 4px 5px #00000041;
    background-color: var(--black);
}

.navmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navhamburger {
    display: none;
}

.navopen {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.line {
    width: 25px;
    height: 4px;
    background-color: var(--white);
    border-radius: 4px;
}

/* HERO */
.header {
    font-size: 32px;
    font-weight: var(--semibold);
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.hero__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero__header h1, p {
    margin: 0;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 9px;
}

/* PRODUCTS */
.products {
    display: flex;
    flex-direction: column;
    background-color: var(--red);
    gap: 30px;
    padding: 20px;
    align-items: center;
}

/* PRODUCT CARD */
.productcard {
    background-color: var(--black);
    border-radius: 4px;
    padding: 10px 15px;
    width: 353px;
    height: 187px;
    position: relative;
    box-shadow: 2px 4px 5px #00000077;
    overflow: hidden;
    transition: ease-out 0.2s;
}

.productcard:hover {
    transform: translateY(-5px);
}

.productcard::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -80px;
    width: 300px;
    height: 400px;
    background-color: var(--gray);
    border-radius: 50%;
    pointer-events: none;
}

.productcard img {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);

    width: 188px;
    height: 106px;
    object-fit: contain;
}

.productcard__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: stretch;
    width: 131px;
}

.productcard__header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.productcard__title {
    font-size: 20px;
    font-weight: var(--semibold);
}

.productcard__desc {
    font-size: 12px;
}

.productcard__price {
    color: var(--red);
    font-size: 20px;
}

.tag {
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: var(--purple);
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 8px;
}

/* HOW TO */

.howto {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
}

.bullet {
    display: flex;
    gap: 17px;
}

.bullet-after {
    display: flex;
    gap: 17px;
}

.bullet-after::after {
    content: "";
    background-color: var(--red);
    height: auto;
    width: 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.bullet::before {
    content: "";
    background-color: var(--red);
    height: auto;
    width: 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.bullet__content {
    display: flex;
    gap: 3px;
    flex-direction: column;
}

.bullet__title {
    font-weight: var(--semibold);
    font-size: 20px;
}

.bullet__text {
    font-size: 15px;
}

/* SAMPLE */

.tryout {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sample {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: var(--red);
    padding: 20px 15px;
    border-radius: 6px;
    align-items: center;
}

.sample__playback {
    display: flex;
    gap: 12px;
}

.sample__buttons {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.icon-play {
    display: block;
}

.icon-pause {
    display: none;
}

/* END */
.end {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin: 60px 0;
}

.question {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.question__text {
    font-size: 24px;
}

/* FOOTER */
footer {
    background-color: var(--red);
    padding: 20px;
}

footer li {
    list-style: none;
    font-size: 12px;
}

.footer {
    display: flex;
    justify-content: space-between;
}

.footer__side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__list {
    line-height: 1.2rem;
}

.listheader {
    font-weight: var(--semibold);
    font-size: 16px;
}

/* BUTTONS */
.button {
    background-color: var(--red);
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--white);
}

.button-outline {
    background-color: transparent;
    border: 2px solid var(--red);
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--white);
}

.button-dark {
    background-color: var(--black);
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--white);
}

.selected {
    background-color: var(--gray);
}

.dropdown {
    padding: 5px 10px;
    border-radius: 4px;
    background-color: var(--gray);
    display: flex;
    gap: 10px;
}