 body { font-family: Arial; margin: 0;
  overflow-x: hidden; }

/* HEADER */
/*header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  color: white;
  padding: 10px;
}

.logo {
  width: 80px;
}*/
/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;

  padding: 0 15px;   /* remove top/bottom padding */
  height: 70px;      /* match logo height */
  box-sizing: border-box;
}

/* center logo perfectly */
.logo {
  height: 70px;   /* same as header */
  object-fit: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
}
.logo-last{
    height:100px;

}

/* LOGO CENTER */
.logo {
 
  object-fit: contain;
}
.logo-text {
  font-family: 'Great Vibes', cursive; /* elegant script font */
  font-size: 28px;
  color: white;
  text-align: center;
  flex: 1;
}

/* LEFT MENU ICON */
.menu-icon {
  color:black;
  font-size: 24px;
  cursor: pointer;
}

/* RIGHT ICONS */
.right-icons {
  display: flex;
  gap: 15px;
  font-size: 18px;
  cursor: pointer;
}

/* SIDE MENU */
/*.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: black;
  color: black;
  padding-top: 60px;
  transition: 0.3s;
}*/
.side-menu {
  position: fixed;
  top: 70px;                 /* SAME as header height */
  left: -250px;
  width: 250px;
  height: calc(100% - 70px); /* full height minus header */
  background: black;
  color: white;
  transition: 0.3s;
  z-index: 999;              /* below header */
}
.side-menu a {
  display: block;
  padding: 15px;
  color: white;
  text-decoration: none;
}

.side-menu a:hover {
  background: #333;
}

/* SHOW MENU */
.side-menu.active {
  left: 0;
}

nav a {
  color: white;
  margin: 10px;
  text-decoration: none;
}

/* SECTIONS */
section {
  padding: 20px;
}
.product-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ALWAYS 2 columns */
  gap: 10px;
  padding: 10px;
}

.product-actions {
  margin-top: auto; /* pushes buttons to bottom */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#products {
  padding: 10px; /* equal on both sides */
}

.product-container {
  padding: 0;   /* remove extra inner padding */
  gap: 12px;
}
/* Product card */



/* PRODUCTS */
/*.product-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}*/

.product {
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: left; 
  padding: 12px;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%; /* IMPORTANT */
}
/* Product card */
.product {
  width: 100%;
  box-sizing: border-box;
}
.product h3 {
  margin: 8px 0 4px;
  font-size: 16px;
  line-height: 1.2;
  min-height: 38px; /* keeps alignment equal */
}

.product p {
  margin: 0 0 10px;
}


/* Optional: make cards fit better on small screens */

/*.product {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background: white;
  text-align: center;
}*/
/*.product {
  border: 1px solid #ddd;
  padding: 10px;
  width: 200px;
}*/


/* Optional: make cards fit better on small screens */
/*.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}*/
.product img {
  width: 100%;
  height: auto;          /* let image keep original ratio */
  object-fit: contain;   /* ensures full image is visible */
  border-radius: 8px;
}

/* SLIDER */
.slider {
  display: flex;
  overflow: hidden;
}

.slider img {
  width: 100%;
  display: none;
}

/* WISHLIST BOX */
#wishlistBox {
  position: fixed;
  top: 20%;
  right: 10px;
  background: white;
  border: 1px solid black;
  padding: 10px;
  display: none;
}

/* MOBILE RESPONSIVE */
/*@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }*/

  .product {
    width: 100%;
  }
  #wishlistBox {
  position: fixed;
  top: 70px;
  right: 15px;
  width: 220px;
  background: white;
  border: 1px solid #ccc;
  padding: 15px;
  display: none; /* hidden by default */
  z-index: 1000;
}

#wishlistBox.active {
  display: block;
}


.product button {
  background: #ff4d6d;      /* pink background */
  color: white;              /* white text and icon */
  border: none;              /* remove default border */
  border-radius: 5px;        /* rounded corners */
  padding: 8px 12px;         /* spacing */
  cursor: pointer;           /* pointer on hover */
  font-size: 14px;
  transition: background 0.3s;
}

.product button:hover {
  background: #ff1a3a;       /* darker pink on hover */
}
/* Heart button default */
.product button.heart-btn {
  background: white;      /* pink background */
  color: ff4d6d;              /* white heart */
  border: none;
   border-radius: 5px;  
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}

/* Heart button clicked/favorited */
.product button.heart-btn.active {
  color: yellow;            /* yellow heart when clicked */
}
/* View More button style */
#viewMoreBtn {
  background: #ff4d6d;      /* pink background */
  color: white;              /* white text */
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

#viewMoreBtn:hover {
  background: #ff1a3a;      /* darker pink on hover */
}
/* PRODUCT CARD */


/* HEART BUTTON */


/* ORDER NOW BUTTON */
.product button:last-child {
  background: #ff4d6d;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: 5px;
  transition: background 0.3s;
}

.product button:last-child:hover {
  background: #ff1a3a;
}

/* VIEW MORE BUTTON */
#viewMoreBtn {
  background: #ff4d6d;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  margin: 20px auto;
  display: block;
}

#viewMoreBtn:hover {
  background: #590e27;
}

/* WISHLIST PAGE STYLING */
body {
  font-family: Arial;
  margin: 0;
  background: white(254, 216, 221);
  color: black;
}

#wishlistContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 pics per row */
  grid-auto-rows: 50vh;                  /* each row takes half viewport height */
  gap: 15px;
  padding: 15px;
}

#wishlistContainer .product {
  background: white; /* light pink card */
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center content vertically */
  align-items: center;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

#wishlistContainer .product img {
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

#wishlistContainer .product h3,
#wishlistContainer .product p {
  color: white;
  margin: 5px 0;
}
/* LOGO IMAGE */
.logo {
  height: 70px;       /* control size */
  object-fit: contain;
  display: block;
  margin: 0 auto;     /* center it */
}



#wishlistContainer .product button {
  width: 100%;          /* full width of card */
  display: block;       /* ensures block layout */
  background: rgb(181, 16, 115);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 0;      /* more vertical padding for full row look */
  cursor: pointer;
  margin-top: 15px;      /* spacing between buttons */
  font-size: 16px;
  text-align: center;   /* center the text/heart */
  transition: background 0.3s;
}

#wishlistContainer .product button:hover {
  background: #333;     /* darken on hover */
}

/* Heart button specific */
#wishlistContainer .product button.heart-btn {
  font-size: 18px;       /* bigger heart icon */
  background: rgb(181, 16, 115);     /* same full-width style */
  color: white;          /* default color */
}

#wishlistContainer .product button.heart-btn.active {
  color: yellow;         /* yellow when clicked */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  #wishlistContainer {
    grid-template-columns: 1fr;  /* 1 column on mobile */
    grid-auto-rows: auto;        /* rows adjust height automatically */
  }
}
@media (max-width: 768px) {

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
     /* slightly smaller for mobile */
  }

}

/* POLICIES SECTION */
.policies {
  background: white;              /* black background */
  color: black;                  /* white text */
  padding: 0px 20px;
  line-height: 1.6;
}
.contact{
     background: beige;              /* black background */
  color: black;   
}

/* HEADINGS */
.policies h2 {
  color: black;               /* pink headings */
  margin-top: 30px;
  font-size: 22px;
}

/* PARAGRAPHS */
.policies p {
  margin: 10px 0;
  font-size: 15px;
}

/* LIST */
.policies ul {
  margin-left: 20px;
}

.policies li {
  margin-bottom: 5px;
}

/* DIVIDER LINE */
.policies hr {
  border: none;
  border-top: 1px solid #444;
  margin: 30px 0;
}
.wishlist-icon {
  position: relative;
  font-size: 20px;
  color: #0c2a5f;
}
.product .heart-btn {
  font-size: 30px;     /* increase icon size */
  padding: 8px 12px;   /* make button bigger */
  color: #0b3d91;      /* dark blue */
}


#wishlist-icon span,
.wishlist-icon span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}
