* {
    margin: 0%;
    padding: 0%;
}

:root {
    --primary-color: #6b4f4f;
    /* Antique brown */
    --secondary-color: #d2b48c;
    /* Tan / beige */
    --accent-color: #c19a6b;
    /* Gold-brown accent */
    --text-color: #2e2e2e;
    /* Dark text */
    --background-color: #f5f0e6;
    /* Light paper background */
}


body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: var(--background-color);
    color: var(--text-color);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #7b5e57; /* Antique brown */
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f8e8d0; /* Antique gold */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #f8e8d0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffdf99;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.3rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #f8e8d0;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {

}


/* carousel */
.carousel {
    position: relative;
    overflow: hidden;
    background: var(--background-color);
    max-width: 1250px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 600ms cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* hero aspect ratio, adjusts on small screens */
    aspect-ratio: 16 / 7;
    background: #eee;
}

.slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

/* caption box */
.caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    max-width: 60%;
    color: var(--text-color);
}

.caption h3 {
    margin: 0 0 4px 0;
    font-size: 1.05rem
}

.caption p {
    margin: 0;
    font-size: .9rem;
    opacity: .9
}

/* controls */
.controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.controls .prev {
    left: 12px
}

.controls .next {
    right: 12px
}

/* indicators (dots) */
.indicators {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
}

.indicators button.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* small helper for page content */
.hero {
    padding: 28px 20px;
    text-align: center;
}




.Product-Page-Head{
    display: flex;
    justify-content: Center;
    align-items: center;
    margin-top: 25px;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.products{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 20px 0;
}
    .product-card {
        background: #fff;
        width: 300px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .product-card img {
        width: 100%;
        display: block;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        font-weight: bold;
        color: #333;
    }

    .product-price {
        font-size: 1.1rem;
        color: #27ae60;
        margin-bottom: 10px;
    }

    .product-desc {
        font-size: 0.9rem;
        color: #777;
        margin-bottom: 15px;
    }

    .buy-btn {
        display: inline-block;
        padding: 10px 15px;
        background: #27ae60;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s;
    }

    .buy-btn:hover {
        background: #219150;
    }


.about-section {
  background-color: #f8f4ec;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border: 8px solid #cbb88a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-text {
  flex: 1;
  color: #4b3f2f;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2e2518;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-text .quote {
  font-style: italic;
  font-size: 18px;
  margin-top: 20px;
  color: #7a674f;
  border-left: 4px solid #cbb88a;
  padding-left: 15px;
}









footer {
  background: var(--primary-color);
  color: #f8e8d0;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 50px;
}

.footer-Section-main{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--accent-color);
}

.footer-section p,
.footer-section ul,
.footer-section a {
  font-size: 14px;
  color: #f8e8d0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.social-icons a {
  color: #f8e8d0;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-bottom p {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #f8e8d0;
  font-size: 13px;
  color: #f8e8d0;
}






















.contact-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 250px;
    max-width: 300px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
}

h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: #222;
}

p {
    font-size: 15px;
    color: #555;
}