/* By Iriniti Website Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #f8f1e8;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3.5em;
    color: #a37457;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

header h1::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    border-radius: 2px;
}

header a {
    text-decoration: none;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

nav {
    background-color: #a37457;
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1em;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-image: url('By_Iriniti_Logo_Background.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    margin: 0;
}

.product-page .hero {
    height: 18vh;
    background-color: #f8f1e8;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.section {
    padding: 40px;
    text-align: center;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #a37457;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 2px solid #a37457;
    border-radius: 10px;
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 3px solid #a37457;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-title {
    font-size: 2.5em;
    color: #a37457;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
    text-align: left;
}

.shop-button {
    display: inline-block;
    background-color: #a37457;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.shop-button:hover {
    background-color: #8a6248;
}

.shop-button:active {
    background-color: #6d4d3b;
}

.product-page {
    text-align: center;
    background-color: #f8f1e8;
    min-height: 80vh;
}

.product-container {
    padding: 40px;
    background-color: #ffffff;
}

.product-description-container {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.product-price {
    margin-top: 30px;
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    padding: 15px 25px;
    background-color: #f8f1e8;
    border-radius: 8px;
    display: inline-block;
}

.out-of-stock {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: #e74c3c;
    padding: 10px 25px;
    background-color: #fff0f0;
    border-radius: 8px;
    display: inline-block;
}

footer {
    background-color: #f8f1e8;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1em;
}

a {
    color: #a37457;
}