* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---------------- TOP BAR ---------------- */
.top-bar {
  background-color: #c3a572;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

/* ---------------- CATEGORY BAR ---------------- */
.category-bar {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.category-bar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 25px;
  padding: 10px 0;
}

.category-bar a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.category-bar a:hover {
  color: #b28b5a;
  transform: scale3d(1.1, 1.1, 1.1);
}

/* ---------------- NAVIGATION ---------------- */
.navbar {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: #b28b5a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #b28b5a;
  transform: scale3d(1.05, 1.05, 1.05);
}

/* ---------------- MAIN BANNER ---------------- */
.main-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Each slide takes full screen */
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideShow 10s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:#fff; /* visible behind transparent areas */
}

/* Make images fit fully (no cuts) */
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full image visibility */
  border-radius: 0;
}

/* Animation delay for slides */
.banner-slide:nth-child(1) {
  animation-delay: 0s;
}
.banner-slide:nth-child(2) {
  animation-delay: 5s;
}

/* 3D Pulse Animation */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes pulse {
  0% { transform: scale3d(1, 1, 1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
  100% { transform: scale3d(1, 1, 1); }
}

@keyframes pulse {
  0% { transform: scale3d(1, 1, 1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
  100% { transform: scale3d(1, 1, 1); }
}

/* Slide transition with 3D rotation */
@keyframes slideShow {
  0% { opacity: 0; transform: rotateY(90deg); }
  5% { opacity: 1; transform: rotateY(0deg); }
  45% { opacity: 1; transform: rotateY(0deg); }
  50% { opacity: 0; transform: rotateY(-90deg); }
  100% { opacity: 0; }
}

/* Smooth fade */
.fade {
  transition: opacity 1.5s ease-in-out;
}
.fresh-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.fresh-section h2 {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: normal;
  text-transform: capitalize;
  color: #000;
}

/* Grid layout */
.fresh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 10px;
}

/* Each image card */
.item {
  position: relative;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.item h3 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 6px;
  color: #333;
  font-weight: bold;
}
.fresh-grid {
  grid-template-areas:
    "a b c"
    "d e e";
}

.item:nth-child(1) { grid-area: a; }
.item:nth-child(2) { grid-area: b; }
.item:nth-child(3) { grid-area: c; }
.item:nth-child(4) { grid-area: d; }
.item:nth-child(5) { grid-area: e; }

/* Make the 5th image take double space (2fr width) */
.item:nth-child(5) {
  grid-column: span 2;
}
/* Flash animation */

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.6;
  }
}

.item img:hover {
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

/* Flash Keyframes */
@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.6;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.6;
  }
}
.gift-section {
  width: 100%;
  text-align: center;
  padding: 40px 5%;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gift-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.gift-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-size: 15px;
  margin: 10px 0 5px;
  padding: 0 10px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.off {
  color: crimson;
}

.banner-section {
  width: 100%;
  background-color: #faf6f2;
  margin-top: 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-img {
  flex: 1 1 50%;
}

.banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px;
}

.banner-text h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .gift-card {
    flex: 1 1 100%;
  }
  .banner-container {
    flex-direction: column;
  }
  .banner-text {
    padding: 20px;
  }
}

.gift-section {
  width: 100%;
  text-align: center;
  padding: 40px 5%;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gift-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.gift-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-size: 15px;
  margin: 10px 0 5px;
  padding: 0 10px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.off {
  color: crimson;
}

.banner-section {
  width: 100%;
  background-color: #faf6f2;
  margin-top: 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-img {
  flex: 1 1 50%;
}

.banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px;
}

.banner-text h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .gift-card {
    flex: 1 1 100%;
  }
  .banner-container {
    flex-direction: column;
  }
  .banner-text {
    padding: 20px;
  }
}

.gift-section {
  width: 100%;
  text-align: center;
  padding: 40px 5%;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gift-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.gift-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-size: 15px;
  margin: 10px 0 5px;
  padding: 0 10px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.off {
  color: crimson;
}

.banner-section {
  width: 100%;
  background-color: #faf6f2;
  margin-top: 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-img {
  flex: 1 1 50%;
}

.banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px;
}

.banner-text h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .gift-card {
    flex: 1 1 100%;
  }
  .banner-container {
    flex-direction: column;
  }
  .banner-text {
    padding: 20px;
  }
}

.gift-section {
  width: 100%;
  text-align: center;
  padding: 40px 5%;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gift-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.gift-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-size: 15px;
  margin: 10px 0 5px;
  padding: 0 10px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.off {
  color: crimson;
}

.banner-section {
  width: 100%;
  background-color: #faf6f2;
  margin-top: 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-img {
  flex: 1 1 50%;
}

.banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px;
}

.banner-text h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .gift-card {
    flex: 1 1 100%;
  }
  .banner-container {
    flex-direction: column;
  }
  .banner-text {
    padding: 20px;
  }
}

.gift-section {
  width: 100%;
  text-align: center;
  padding: 40px 5%;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gift-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.gift-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-size: 15px;
  margin: 10px 0 5px;
  padding: 0 10px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.off {
  color: crimson;
}

.banner-section {
  width: 100%;
  background-color: #faf6f2;
  margin-top: 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-img {
  flex: 1 1 50%;
}

.banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px;
}

.banner-text h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .gift-card {
    flex: 1 1 100%;
  }
  .banner-container {
    flex-direction: column;
  }
  .banner-text {
    padding: 20px;
  }
}

.gift-section {
  width: 100%;
  text-align: center;
  padding: 40px 5%;
}

.gift-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gift-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.gift-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-size: 15px;
  margin: 10px 0 5px;
  padding: 0 10px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.off {
  color: crimson;
}

.banner-section {
  width: 100%;
  background-color: #faf6f2;
  margin-top: 40px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-img {
  flex: 1 1 50%;
}

.banner-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px;
}

.banner-text h2 {
  font-size: 40px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 20px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .gift-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .gift-card {
    flex: 1 1 100%;
  }
  .banner-container {
    flex-direction: column;
  }
  .banner-text {
    padding: 20px;
  }
}
.categories-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.categories-section h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.categories-grid {
  display: grid;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 30px;
  justify-items: center;
}

.category {
  text-align: center;
}

.category img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category img:hover {
  transform: scale(1.03);
}

.category p {
  margin-top: 15px;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.shop-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.shop-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

/* Each Video Card */
.video-card {
  flex: 0 0 auto;
  width: 250px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.5s;
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card:hover {
  transform: scale(1.05) rotateY(10deg);
}

/* Animation (continuous scroll) */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Arrows */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.carousel-container::before {
  left: 20px;
  background-image: url('https://img.icons8.com/ios-filled/50/000000/chevron-left.png');
}

.carousel-container::after {
  right: 20px;
  background-image: url('https://img.icons8.com/ios-filled/50/000000/chevron-right.png');
}

/* Responsive */
@media (max-width: 768px) {
  .video-card {
    width: 180px;
    height: 300px;
  }
  .carousel-track {
    gap: 10px;
  }
}
.blog-section {
  text-align: center;
  width: 100%;
  padding: 80px 5%;
}

.blog-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #000;
  position: relative;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: start;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.blog-card:hover {
  transform: rotateY(8deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.blog-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08) rotateZ(1deg);
}

.blog-content {
  padding: 25px;
}

.blog-content .date {
  font-size: 0.9rem;
  color: #b28c50;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: #b28c50;
}

/* Subtle hover glow */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blog-card:hover::after {
  opacity: 1;
}

