/* === GLOBAL STYLES === */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding-top: 90px; /* space for fixed header */
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 98%;
  background: linear-gradient(to bottom, #f7f4f1, #fff);
  border-bottom: 1px solid #e8e3df;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

/* === LOGO + TITLE === */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.95;
}

.title-block h1 {
  font-family: "Georgia", "Playfair Display", serif;
  font-size: 1.8rem;
  color: #3a2e27;
  margin: 0;
  letter-spacing: 0.5px;
}

.title-block p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  color: #7a6a5f;
  margin: 0.2rem 0 0;
}

/* === NAV LINKS === */
nav a {
  text-decoration: none;
  color: #5c4b3e;
  font-weight: 500;
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #b9855a;
}

.About {

  width: 98%;
  background:#FF416C;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #FF4B2B, #FF416C);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #FF4B2B, #FF416C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  border-bottom: 1px solid #e8e3df;
  font-family:sans-serif;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0.8rem 2rem;
  display: inline-block;
  text-align: center;
  align-items: center;
  z-index: 1000;
}
/* === PRODUCT GRID === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
  padding: 2rem;
  max-width: 1800px;
  margin: 0 auto;
}

/* === PRODUCT CARDS === */
.product {
  background: #fff,0.2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.product:hover {
  transform: scale(1.01);
}

/* === PRODUCT TITLES === */
.product h2 {
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  margin: 0;
}

/* === IMAGE CAROUSEL === */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5; /* Keeps balanced image shape */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.carousel img.active {
  display: block;
}

/* === CAROUSEL BUTTONS === */
.carousel button {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s ease;
}

.carousel button:hover {
  background: rgba(255,255,255,0.2);
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}

/* === SOLD ITEMS === */
.product.sold {
  position: relative;
  opacity: 0.4;                /* Fade out */
  pointer-events: none;        /* Disable clicking */
  transition: opacity 0.3s ease;
}

.product.sold::after {
  content: "SOLD";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  color: #3a2e27;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


footer {
 
  bottom: 0;
  left: 0;
  width: 95%;
  background: linear-gradient(to bottom, #f7f4f1, #fff);
  border-bottom: 1px solid #e8e3df;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

