* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

nav {
    background-color: #cd6f0b;
    padding: 20px 0;
    position: relative;
    transition: background 0.3s ease-in-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

nav:hover {
    background-color: #b45b09;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

nav ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

nav ul li:hover {
    transform: scale(1.1);
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    transition: background 0.4s ease-in-out, border-radius 0.5s ease-in-out;
}

nav ul li a:hover {
    background: #e07c10;
    border-radius: 25px;
}

.nav-left .logo {
    position: absolute;
    left: 20px;
    top: 2px;
    width: 180px;
    height: auto;
}

h2 {
    text-align: center;
    color: #cd6f0b;
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
}

h3 {
    text-align: center;
    color: #cd6f0b;
    font-size: 22px;
    font-weight: bold;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    gap: 25px;
    flex-direction: row;
}

.product-box {
    width: 300px;
    height: 500px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #cd6f0b;
}

.product-box:hover .product-image {
    transform: scale(1.03);
}

.product-box:hover .buy-button {
    background-color: #e07c10;
    box-shadow: 0 4px 12px rgba(224, 124, 16, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.product-description {
    font-size: 20px;
    color: rgb(255, 165, 0);
    margin: 15px 0;
    padding: 0 10px;
    flex-grow: 1;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.buy-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50px;
    background-color: #cd6f0b;
    border: none;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.buy-button:hover {
    background-color: #e07c10;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.buy-button:active {
    transform: translateX(-50%) scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding-bottom: 130px;
    color: #cd6f0b;
    list-style: none;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.product-info li {
    position: relative;
    padding-left: 28px;
}

.product-info li:before {
    color: #e07c10;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}

.product-price {
    font-size: 24px;
    color: #cd6f0b;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 700;
    margin: 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price:before {
    content: "€";
    font-size: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.discount-price {
    color: #e74c3c;
    font-weight: bold;
}

.product-info img {
    text-align: left;
    width: 24px;
    height: 24px;
}

::marker {
    display: none;
}

.product-container {
    overflow-y: auto;
}

.product-gallery {
    overflow-y: auto;
}

.product-details {
    overflow-y: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.4s;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    nav {
        padding: 40px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #b45b09;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 70px;
        z-index: 999;
    }

    .nav-right.show {
        display: flex;
    }


    .product-container {
        flex-direction: column;
        align-items: center;
        list-style: none;
    }

    .product-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        list-style: none;
    }

    .product-box {
        width: 45%;
        margin-bottom: 20px;
        list-style: none;
        
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        
    }

    nav ul li {
        font-size: 18px;
    }

    nav ul li a {
        padding: 10px 15px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .product-description {
        font-size: 18px;
    }

    .product-info {
        font-size: 16px;
    }

    .nav-right {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .product-image {
        width: 100%;
        height: 150px; /* or adjust to your desired height */
        object-fit: cover;
        border-radius: 10px; /* optional for nicer corners */
        display: block;
    }

    .product-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 600px; /* or whatever fits your content */
    }
}