 *{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family:Georgia, 'Times New Roman', Times, serif;
}

body {
 scroll-behavior: smooth;
}

header {
 position: fixed;
 width: 100%;
 top: 0;
 background: rgb(255, 255, 255);
 display: flex;
 justify-content: space-between;
 padding: 20px 40px;
 border-bottom: 1px solid #eee;
 z-index: 1000;
}

h8 {
    font-size: xx-large;
    font-style: italic;
}

nav a {
 margin-left: 20px;
 color: rgb(189, 138, 9);
 font-weight: 500;
}

/* HERO */
.hero {
 height: 100vh;
 background: url(Images/IMG_1901.JPG) center/cover;
 display: flex;
 align-items: center;
 justify-content: center;
}

h1 {
    color: rgb(189, 138, 9);
    font-style: italic;
}

h2 {
    color: white(255, 255, 255);
    text-align: center;
    font-size: large;
}

h3 {
    color: white;
}

h4 {
    color: rgb(189, 138, 9);
    font-size: xx-large;
    text-align: center;
}



a {
    color: white;
}

.overlay {
 text-align: center;
 color: white;
 background: rgba(0,0,0,0.4);
 padding: 40px;
}

.btn {
 display: inline-block;
 margin-top: 20px;
 padding: 12px 25px;
 background: rgb(189, 138, 9);
 color: white;
 text-decoration: none;
}


.shop {
 padding: 120px 40px 60px;
 text-align: center;
}

.shop1 {
 padding: 40px 60px;
 text-align: center;
}

.center {
 padding: 40px;
 align-items: center;
}

.product-grid {
 margin-top: 40px;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 20px;
}

.card {
 padding: 12px;
 background-color: rgb(189, 138, 9);
 transition: 0.3s;
}

.card:hover {
 transform: translateY(-35px);
}

.card img {
 width: 100%;
 height: 550px;
 object-fit: cover;
}


.about {
 padding: 80px 40px;
 background: #fafafa;
}

.about-container {
 display: flex;
 align-items: center;
 gap: 40px;
 flex-wrap: wrap;
}

.about-text {
 flex: 1;
}

.about-image img {
 width: 100%;
 max-width: 400px;
}

.background-image img {
 width: 100%;

 }

 .testimonial {
 border-top: 1px solid #ddd;
 background-color: rgb(189, 138, 9);
 padding-top: 20px;
 margin-top: 20px;
 padding-bottom: 15px;
 padding-left: 50px;
 box-shadow: 10px 10px 10px 5px;
color: rgb(151, 142, 118);
 }


footer {
 text-align: center;
 padding: 20px;
 background: rgb(189, 138, 9);
 color: white;
 max-width: 100%;
 min-width: 100%;
 margin-bottom: 0;
 
}

.footer {
 max-width: 100%;
 min-width: 100%;
    }





    body {
    font-family: Georgia, serif;
    margin: 0;
    background: #fafafa;
    color: rgb(189, 138, 9);
    overflow-x: hidden;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-form, .order-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.checkout-form { flex: 2; }
.order-summary { flex: 1; border: 1px solid rgb(189, 138, 9); }



label { display: block; margin-top: 15px; }

input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(189, 138, 9);
    border-radius: 6px;
    margin-top: 5px;
    font-family: Georgia, serif;
}

.row { display: flex; gap: 10px; }
.row div { flex: 1; }

button {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background: rgb(189, 138, 9);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.divider {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

/* overlays */
#loading, #success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 22px;
    color: rgb(189, 138, 9);
}