body {
    font-family: "Times New Roman", serif;
    margin: 0;
    padding: 0;
    background: url("images/background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #2c1b0f;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(253, 246, 236, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #8b4513;
    border-radius: 5px;
}

header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(to bottom, #5d4037, #3e2723);
    color: #d7ccc8;
    margin-bottom: 30px;
    border-bottom: 3px solid #d7ccc8;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px #000;
}

h2 {
    color: #5d4037;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-table th {
    background-color: #5d4037;
    color: #efebe9;
    padding: 15px;
    text-align: left;
    font-size: 1.1rem;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #bcaaa4;
    vertical-align: top;
}

.price-table tr:nth-child(even) {
    background-color: #efebe9;
}

.price-table tr:hover {
    background-color: #d7ccc8;
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #8b4513;
    border-radius: 5px;
}

.product-main-image {
    width: 300px;
    display: block;
    margin: 0 auto 20px;
    border: 3px solid #5d4037;
    border-radius: 5px;
}

.price {
    font-weight: bold;
    color: #5d4037;
    font-size: 1.2rem;
}

.navigation {
    text-align: center;
    margin: 30px 0;
}

.nav-button {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    background: linear-gradient(to bottom, #5d4037, #3e2723);
    color: #efebe9;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #8b4513;
}

.nav-button:hover {
    background: linear-gradient(to bottom, #3e2723, #1b0000);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #8b4513;
    color: #5d4037;
    font-style: italic;
}

.downloads a {
    color: #5d4037;
    text-decoration: underline;
}

.downloads a:hover {
    color: #3e2723;
}

ul,
ol {
    margin-left: 20px;
}

.product-page {
    max-width: 800px;
}