@font-face {
    font-family: teksti;
    src: url(BarlowCondensed-Light.ttf);
    font-style: normal;
}

@font-face {
    font-family: teksti;
    src: url(BarlowCondensed-Medium.ttf);
    font-style: italic;
}

@font-face {
    font-family: otsikko;
    src: url(CherryBombOne-Regular.ttf);
    font-style: italic;
}


body {
    margin: 0;
    font-family: teksti, sans-serif;
    background: var(--bg);
    color: var(--text);
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.header {
    background-color: #00c6ff;
    color: white;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
    font-size: 70px;
    font-weight: bold;
    font-family: otsikko;
    margin-top: -20px;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    position: relative;
    transition: all 0.5s ease;
}

.nav a:hover {
    font-size: 25px;
    font-style: italic;
}



.tuotekortti {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    background: var(--card);
    margin-top: 40px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}


.kuva {
    display: flex;
    align-items: center;
}

.kuva img {
    max-height: 600px;
    transition: 0.3s;
}

.kuva img:hover {
    transform: scale(1.05) rotate(-2deg);
}


.tiedot h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

h1 {
    margin-top: -10px;
}

p {
    margin-top: -10px;
}

.hinta {
    font-size: 32px;
    color: var(--primary);
    font-weight: bold;
    font-style: italic;
    color: #00c6ff;
    margin-bottom: -10px;
}

.arviot {
    color: gold;
    margin: 10px 0;
    font-size: 18px;
}

.arviot span {
    color: #666;
    font-size: 14px;
    margin-left: 8px;
}

.kuvaus {
    line-height: 1.6;
}


.lisatiedot {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.lisatiedot li {
    margin-bottom: 8px;
    font-size: 16px;
}


.osta {
    background-color: #00c6ff;
    border: none;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}

.osta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.pikkukuvat {
    gap: 5px;
    margin-top: 330px;
}

.pikkukuvat img {
    width: 45px;
    cursor: pointer;
    transition: 0.2s;
    opacity: 0.8;
}

.pikkukuvat img:hover {
    opacity: 1;
    transform: scale(1.05);
}

br {
    margin-bottom: -50px;
}

select {
    background-color: #00c6ff;
    color: white;
    font-size: 15px;
    font-style: italic;
    padding: 5px;
    border: none;
    border-radius: 5px;
    transition: 0.25s;
    margin-left: 5px;
}