/* Fonts */
@font-face {
    font-family: 'Helvetica';
    src: url('/static/styles/HELVETICA-01.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('/static/styles/HELVETICA-BOLD-02.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('/static/styles/HELVETICA-OBLIQUE-03.TTF') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica';
    src: url('/static/styles/HELVETICA-LIGHT-05.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    padding-top: 0;
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #212529;
}

main {
    background-color: #212529;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar {
    margin-bottom: 0;
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar-brand {
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.carousel-item {
    height: 400px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.bd-placeholder-img {
    background-color: #777;
}

#productCarousel .carousel-item {
    height: auto;
}

#productCarousel img {
    border-radius: 8px;
}

/* Confetti button styles */
#confettiButton {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 100vmax;
    cursor: pointer;
    padding: 0.75em 2em;
    position: relative;
    transition: all 0.3s ease;
    height: 48px;
    line-height: 1;
}

#quantity {
    height: 48px;
}

#confettiButton:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


#confettiContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.product-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

footer {
    background-color: #212529;
}

footer .text-muted {
    color: #adb5bd !important;
}

#productName {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
}
