body {
  background-color: #fbfaf8;
  margin: 0;
  font-family: Arial, sans-serif;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 15px;
}

nav a:hover {
  text-decoration: underline;
}

section {
  max-width: 1200px;
  margin: auto;
}

section img {
  border-radius: 6px;
}

section div {
  transition: transform 0.2s ease;
}

section div:hover {
  transform: scale(1.03);
}/* your existing CSS above */


/* PASTE STARTS HERE */
section {
  max-width: 1200px;
  margin: auto;
}

.product {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

section img {
  display: block;
  width: 100%;
}

section p {
  padding: 10px;
  font-weight: 500;
}
/* PASTE ENDS HERE */
/* ===== SHOP LUXURY UPGRADE ===== */

body {
  background-color: #f8f6f2;
  color: #222;
  font-family: 'Georgia', serif;
}

header {
  background: white;
  border-bottom: 1px solid #eee;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 15px;
  font-weight: 500;
}

nav a:hover {
  color: #b89b5e;
}

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 30px;
}

/* CATEGORY BOX */
.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: white;
  border: 1px solid #eee;
  text-decoration: none;
  color: #222;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.category-card:hover {
  background: #faf8f3;
  border-color: #b89b5e;
  color: #b89b5e;
  transform: translateY(-3px);
}
/* ===== PRODUCT UPGRADE ===== */

.product {
  background: white;
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.product img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.product p {
  margin: 5px 0;
}

/* PRICE */
.product p strong {
  color: #b89b5e;
  font-size: 18px;
}

/* BUTTON */
.product button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  background: #111;
  color: white;
  cursor: pointer;
  width: 100%;
}

/* HOVER */
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product:hover img {
  transform: scale(1.08);
}
/* CATEGORY IMAGE FIX */
.category-card {
  display: block;
  background: white;
  border: 1px solid #eee;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.category-card p {
  padding: 10px;
  margin: 0;
  font-size: 16px;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #b89b5e;
}
/* CATEGORY PLACEHOLDER IMAGE FIX */
.category-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
/* CATEGORY TEXT FIX */

.category-card {
  height: auto;
  min-height: 190px;
}

.category-card p {
  display: block;
  color: #222;
  background: white;
  margin: 0;
  padding: 12px 5px;
  font-size: 16px;
  text-align: center;
}

/* PRODUCT CARD STYLING */

.product{
    background:white;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    overflow:hidden;
}

.product img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:white;
    border-radius:6px;
    margin-bottom:15px;
    transition:transform 0.35s ease;
}

.product h3{
    margin:10px 0 8px 0;
    font-size:18px;
    color:#222;
}

.product p{
    color:#666;
    font-size:14px;
    line-height:1.5;
}

.product strong{
    font-size:20px;
    color:#111;
}button{
    background:#222;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:6px;
    cursor:pointer;
    font-size:14px;
    font-weight:bold;
    transition:0.3s;
}

button:hover{
    background:#4f6f6b;
}.product{
    transition:0.3s;
}

.product:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 14px rgba(0,0,0,0.12);
}
.product:hover img{
    transform:scale(1.08);
}
.product-img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:white;
    border-radius:6px;
    margin-bottom:15px;
    transition:transform 0.35s ease;
}

.product:hover .product-img{
    transform:scale(1.08);
}