@font-face {
    font-family: Robuck;
    src: url('../RobuckRounded.otf') format('woff2');
}

@font-face {
    font-family: Sanctuary;
    src: url('../Sanctuary-4ZL9.ttf') format('truetype');
}

.product-page-body {
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* LEVÁ STRANA */
.product-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgb(240, 252, 170)15%, rgba(122, 134, 56)70%);
}

.product-main-img {
    height: 85vh;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(0, 239, 248, 0.3));
    animation: float 4s ease-in-out infinite;
}

.glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #9aca7d;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
}

/* PRAVÁ STRANA */
.product-right {
    flex: 1;
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, rgba(122, 134, 56), rgb(31, 36, 0));
}

.product-title {
    font-family: 'Sanctuary', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    color: white;
    line-height: 0.9;
    margin-bottom: 0rem;
    letter-spacing: 2px;
}

.product-title span {
    font-family: 'Sanctuary', sans-serif;
    color: #9aca7d;
    font-size: 4rem;
    -webkit-text-stroke: 1px white;
}

.product-description {
    font-family: 'ChampagneBold', sans-serif;
    color: #ccc;
    font-size: 1.5rem;
    font-weight:normal;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.can-line {
    width: 100%;
    margin: 1.5rem 0;
}

.text1 {
    margin-bottom: 0rem;
    font-family: 'ChampagneBold', sans-serif;
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 500px;
    line-height: 1.6;
}

.text2 {
    font-family: 'ChampagneBold', sans-serif;
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 500px;
    line-height: 1.6;
}

.product-title2 {
    font-family: 'Robuck', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: white;
    line-height: 0.9;
    margin-bottom: 0rem;
    letter-spacing: 2px;
    margin-top: 0rem;
}

.can-line {
    width: 100%;
    margin: 1.5rem 0;
}

/* STATS (Bars) */
.product-stats {
    width: 400px;
    margin-bottom: 1rem;
}

.stat-item {
    margin-bottom: 1.5rem;
}

.stat-label {
    display: block;
    font-family: 'Champagne', sans-serif;
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.stat-fill {
    height: 100%;
    background: #9aca7d;
    box-shadow: 0 0 10px #9aca7d;
}

/* FOOTER */
.product-footer {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-back {
    color: rgb(255, 255, 255);
    font-family: 'ChampagneBold', sans-serif;
    text-decoration: none;
    transition: 0.3s;
}

.btn-back:hover {
    color: white;
}

/* Floating animace */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}