body
{
    margin: 0;
    padding: 0;
    background:
    radial-gradient(circle at center, #f7ecd2 60%, #d8bf85 100%);
    color: #2F2117;
    font-family: 'Source Serif 4', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}
#site-name
{
    width: 280px;
    height: 55px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 55px;

    background:
    radial-gradient(circle at top,
    #7a1616,
    transparent 60%),
    linear-gradient(
    to bottom,
    #4a0d0d,
    #2b0000);
    margin: 10px auto 10px auto;
}
#gold-text a
{
    font-size: 40px;
    font-style: italic;
    font-family: 'Libre Baskerville';
    font-weight: bolder;

    background: linear-gradient(
        120deg,
        #3f2a0a,
        #b8962e,
        #f5e27a,
        #fff6c2,
        #d4af37,
        #8a6e2f,
        #3f2a0a
    );

    background-size:150% auto;
    background-clip:text;
    color:transparent;
}
h1
{
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline;

    font-family: 'lora', serif;
    font-weight: 700;
    font-size: 35px;
    font-style: italic;
    color: #800020;
}
.container
{
    width: 1000px;
    height: auto;
    margin: 20px auto;

    border: 2px solid #950101;
    border-radius: 10px;
    background-color: #d8bf85;

    display: grid;
    grid-template-columns: repeat(2,400px);
    grid-template-columns: repeat(2,1fr);
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}
.container img
{
    border-radius: 10px;
    box-shadow: 0px 0px 10px 3px #D4AF37;
}
.product
{
    text-align:center;
    padding:10px;
    border-radius:5px;
}
.product p
{
    margin:5px 0; 
    font-family: 'Source Serif 4', serif;
    font-size: 16px;
    font-weight: 500;
}
.quantity
{
    display:flex;
    align-items:center;
    justify-content: center;
    gap:10px;
}
.quantity i
{
    font: size 18px;
    cursor:pointer;
}
.quantity span
{
    min-width:20px;
    text-align:center;
    border:1px solid black;
    padding:2px 6px;
}
.offer
{
    margin: auto;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
.cart
{
    padding: 10px 20px; 
    margin: 0px auto 20px auto;

    font-size: 16px;     
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;

    background-color: #5C0017;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px #D4AF37;
    border: none;

    cursor: pointer;
    transition: all 0.3s ease; 
}
.cart:hover
{
    font-size: 18px;
    background-color: #D4AF37; 
    color: #000000;
    transform: translateY(2px);
}

footer
{
    width: 100%;
    background-color: #4b0101;
    padding: 30px 20px 10px;
    box-sizing: border-box;
    text-align: center;
}

.footer-content
{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.site-footer
{
    padding: 10px 20px;
    border-radius: 10px;

    background:
    radial-gradient(circle at top,
    #7a1616,
    transparent 60%),

    linear-gradient(
    to bottom,
    #4a0d0d,
    #2b0000);
}

.footer-logo
{
    margin: 0;
}

.footer-logo a
{
    font-size: 30px;
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
    font-weight: bolder;
    text-decoration: none;

    background: linear-gradient(
        120deg,
        #3f2a0a,
        #b8962e,
        #f5e27a,
        #fff6c2,
        #d4af37,
        #8a6e2f,
        #3f2a0a
    );

    background-size: 150% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

footer ul
{
    margin: 0;
    padding: 0;
}

footer ul li
{
    list-style: none;
    margin: 12px 0;
    text-align: left;
}

footer a,
.sm,
.contact,
.copyright
{
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    text-decoration: none;
}

.sm,
.contact
{
    text-align: left;
}

.sm h3,
.contact h3
{
    margin-bottom: 15px;
}

.sm p,
.contact p
{
    margin: 10px 0;
    line-height: 1.5;
}

.sm i,
.contact i
{
    margin-right: 10px;
}

.copyright
{
    margin-top: 25px;
    font-size: 15px;
}