
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e8dcd4, #f3e8e2, #f8efe7);
    color: #5b4636;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ----------------------------------------------
   HEADER
---------------------------------------------- */
header {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5d5c6;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #5b4636;
    font-weight: 700;
}

.logo span {
    color: #d4a373; /* Gold accent */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.8rem;
}

nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #5b4636;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d4a373;
}

/* ----------------------------------------------
   HERO SECTION
---------------------------------------------- */
.hero {
    background: url('/mnt/data/IMG_20251120_181949_712.jpg') center/cover no-repeat;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5b4636;
    border-radius: 20px;
    margin: 2rem 0;
    padding: 2rem;
}

.hero-content {
    background: rgba(255,255,255,0.6);
    padding: 2rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: #b8860b;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ----------------------------------------------
   BUTTONS
---------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #d4a373, #b8860b);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: linear-gradient(135deg, #b8860b, #d4a373);
    transform: scale(1.05);
}

/* ----------------------------------------------
   PRODUCT GRID
---------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-info {
    padding: 1.4rem;
}

.product-info h3 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5b4636;
}

.product-info p {
    margin: 8px 0 12px;
    color: #7a6452;
    font-size: 0.95rem;
}

.price {
    color: #b8860b;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* ----------------------------------------------
   FOOTER
---------------------------------------------- */
footer {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid #e5d5c6;
}

footer p {
    color: #5b4636;
    font-weight: 600;
}


/* FOOTER NEW UI */
.site-footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e9d9cc;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.footer-heading {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #b8860b; /* gold accent */
    margin-bottom: 1rem;
}

.footer-desc {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: #7c6453;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem auto;
}

.footer-list li {
    margin: 6px 0;
    font-size: 1.05rem;
    color: #5b4636;
}

.footer-tagline {
    margin-top: 1rem;
    color: #d4a373;
    font-weight: 700;
    font-size: 1.15rem;
}

.footer-bottom {
    margin-top: 2rem;
    color: #5b4636;
}

.footer-bottom a {
    color: #b8860b;
    font-weight: 600;
}


.checkout-wrapper {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #b8860b;
}

.checkout-header p {
    color: #7c6453;
}

/* Layout */
.checkout-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.checkout-left, .checkout-right {
    flex: 1;
    min-width: 300px;
}

/* Form */
.checkout-form-ui {
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    font-weight: bold;
    color: #5b4636;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid #e1d2c7;
    margin-top: 5px;
    background: #fffaf6;
}

/* Order Summary */
.summary-box {
    background: rgba(255,255,255,0.8);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    margin-top: 1rem;
    color: #b8860b;
}

.summary-benefits {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: #7c6453;
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}


.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 10px;
}

.brand-title {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    color: #5b4636;
    font-weight: 800;
}

.brand-title span {
    color: #d4a373; /* gold accent */
}

