html {
    scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #fffaf7;
    color: #333;
    margin: 0;
    padding: 0px;
    
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f7f7f7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 60px;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #f76c08;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  
  color: #f76c08;
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #ede1d8;
    flex-direction: column;
    width: 55%;
    display: none;
    line-height: 2px;
    padding: 15px 12px;
    border-top: 1px solid #ddd;
  }

  nav.active {
    display: flex;
   
  }

  .menu-toggle {
    display: block;
    color: #f76c08;
  }

  nav a {
    padding: 10px 20px;
    border-radius: 0;
    color: black;
  }
   nav a:hover {
  color: #f76c08;
  transform: scale(1.05);
  } 
}

main {
  padding: 80px 20px;
}
.hero {
position: relative;
height: 400px;
overflow: hidden;
margin-top: 60px; /* space below fixed header */
}
@media (max-width: 768px){
  .hero{
    height: 400px;
  }
  .hero-content h1{
    line-height: 55px;
    color: #f76c08;
  }
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 0.4; /* lower opacity for background effect */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #d2ed21;
}

.hero-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 15px;
  color: rgb(227, 231, 206);
  font-family:'Times New Roman', Times, serif;
}

.hero-buttons {
margin-top: 20px;
display: flex;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}

.hero-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn.primary {
  background-color: #f76c08;
  color: white;
}

.hero-btn.primary:hover {
  background-color: #b02f17;
  transform: scale(1.05);
}

.hero-btn.secondary {
  background-color: transparent;
  border: 2px solid #f29514;
  color: #f29514;
}

.hero-btn.secondary:hover {
  background-color: #f29514;
  color: white;
  transform: scale(1.05);
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  flex-wrap: wrap;
}

.stat h2 {
  font-size: 25px;
  color: #f76c08;
  margin-bottom: 10px;
  font-weight: bold;
}

.stat p {
  font-size: 1.1rem;
  color: #555;
}

.showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #fef8f4;
  flex-wrap: wrap;
}

.showcase-img img {
  width: 500px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.showcase-content {
  max-width: 500px;
}

.showcase-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f76c08;
}

.showcase-content p {
  font-size: 15px;
  text-align: justify;
  font-family: 'Times New Roman', Times, serif;
  line-height: 25px;
  margin-bottom: 20px;
  color: #333;
}

.btn-collection {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f29514;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-collection:hover {
  background-color: #db3a1d;
  transform: scale(1.05);
}

.products {
  padding: 10px 20px;
  background-color: #fff;
  text-align: center;
}

.products h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #f76c08;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fef8f4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
}

.testimonials {
  background-color: #fef8f4;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #f76c08;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-style: italic;
  color: #444;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f29514;
}

.testimonial-card h4 {
  margin-top: 10px;
  font-size: 1rem;
  color: #f76c08;
  font-weight: bold;
}

.why-us {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.why-us h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #f76c08;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background-color: #fef8f4;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  width: 60px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: #f76c08;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.blog-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.blog-section h2 {
  font-size: 2rem;
  color: #f76c08;
  margin-bottom: 30px;
}

.blog-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.blog-card {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 15px;
  box-sizing: border-box;
}

.blog-card img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.blog-card h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #f76c08;
}

.blog-card p {
  font-size: 0.9rem;
  color: #666;
}

.slider-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background-color: #f76c08;
  color: white;
  border: none;
  font-size: 1.5rem;
  width: 50px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.more-text {
  display: none;
}

.blog-card.expanded .more-text {
  display: inline;
}

.read-more-btn {
  background-color: transparent;
  border: none;
  color: #db3a1d;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
}

.read-more-btn a{
    color: #f76c08;
    text-decoration: none;
}

.read-more-btn a:hover{
  
    text-decoration: underline;
}
/* map */
.contact-section {
  padding: 10px 20px;
  background-color: #fff;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  color: #f76c08;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
}

.map {
  flex: 1;
  min-width: 300px;
  max-width: 1000px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
  width: 100%;
}
@media (max-width: 768px) {
  .map{
    height: 300px;
  }
}

.read-more-link {
    color: #db3a1d;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .read-more-link:hover {
    color: #f29514;
  }
  

  .blog-details-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
  }

  .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #f76c08;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .back-link:hover {
    color: #f29514;
    text-decoration: none;
    border-bottom: 2px solid #f29514;
  }

  .blog-title {
    font-size: 2rem;
    color: #f76c08;
    margin-bottom: 10px;
  }

  .blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
  }

  .blog-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .blog-content {
    font-size: 1rem;
    color: #444;
    text-align: justify;
  }

  @media (max-width: 600px) {
    .blog-title {
      font-size: 1.5rem;
    }

    .blog-content {
      font-size: 0.95rem;
    }
  }

  .blog-details-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-top: 80px;
  }

  .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #f76c08;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .back-link:hover {
    color: #f76c08;
    border-bottom: 2px solid #f29514;
  }

  .blog-title {
    font-size: 2rem;
    color: #f76c08;
    margin-bottom: 10px;
  }

  .blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
  }

  .blog-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .blog-content {
    font-size: 1rem;
    color: #444;
    text-align: justify;
  }

  @media (max-width: 600px) {
    .blog-title {
      font-size: 1.5rem;
      color: #f76c08;
    }
  }
  
 /* Footer styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  width: 100%;
  height: 130px;
}
footer-1{
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer p {
  font-size: 14px;
  margin: 0;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icon {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff9900; /* Hover color for icons */
}

/* FontAwesome Icons */
.fab {
  font-size: 24px;
}

/* Optional: Add some responsive styling */
@media (max-width: 768px) {
  .social-icons {
    gap: 15px;
  }
}

  
  
 /*.cart icon.*/

 .cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: hsl(16, 99%, 44%);
  color: #fff;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
  background-color: rgb(146, 70, 22);
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

.cart-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.cart-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.cart-item img {
  width: 280px;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .cart-item img{
    width: 300px;
    height: 220px;
  }
}

.cart-item h3 {
  margin: 10px 0;
  color: #f76c08;
}

.cart-item p {
  font-weight: bold;
  color: #333;
}

.buy-btn {
  margin-top: 10px;
  background: #f76c08;
  color: #fff;
  border: none;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.buy-btn:hover {
  background-color: rgb(229, 142, 1)
}

.back-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 18px;
  background: #f76c08;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.back-icon:hover {
  background-color: rgb(146, 70, 22);
}
/* General Styles */
.shop-now-banner {
  height: 140px;
  background: url('https://i.pinimg.com/736x/ff/9c/20/ff9c204f62b65141a988cde3c7b1484f.jpg') no-repeat center center/cover;
  border-radius: 15px;
  margin-top: 40px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.shop-now-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 0;
  border-radius: 15px;
}

.shop-now-text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.shop-now-text h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.shop-now-text p {
  font-size: 14px;
  margin: 0;
}

.shop-now-btn {
  margin-top: 5px;
  background: #ff9900;
  color: #fff;
  padding: 6px 16px;
  font-size: 14px;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: fit-content;
}

.shop-now-btn:hover {
  background: #e57c00;
}

.shop-now-image {
  z-index: 1;
}

.shop-now-image img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .shop-now-banner {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .shop-now-text h2 {
    font-size: 18px;
  }

  .shop-now-text p {
    font-size: 12px;
  }

  .shop-now-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .shop-now-image img {
    width: 80px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .shop-now-text h2 {
    font-size: 16px;
  }

  .shop-now-text p {
    font-size: 10px;
  }

  .shop-now-btn {
    font-size: 10px;
    padding: 5px 10px;
  }

  .shop-now-image img {
    width: 70px;
  }
}


.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  margin-top: 70px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.product-left, .product-right {
  flex: 1 1 400px;
  padding: 10px;
}
.main-product-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 10px;
}
.thumbnail-gallery {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
  flex-wrap: wrap;
}
.thumbnail-gallery img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.thumbnail-gallery img:hover {
  border-color: #000;
}
.product-name {
  font-size: 24px;
  margin-bottom: 10px;
}
.product-price-new {
  color: #B12704;
  font-size: 22px;
  margin-bottom: 15px;
}
.product-info {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-buy-now, .btn-whatsapp {
  flex: 1 1 48%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  color: white;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}
.btn-buy-now {
  background-color: #ffa41c;
}
.btn-whatsapp {
  background-color: #25D366;
}

/* More Products Section */
.related-products-section {
  max-width: 1200px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.related-products-section h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.related-products-list {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
}
.related-product-card {
  min-width: 160px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  transition: 0.3s;
}
.related-product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.related-product-card h4 {
  margin: 10px 0 5px;
  font-size: 16px;
}
.related-product-card p {
  color: #B12704;
  font-size: 14px;
}
.related-product-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transform: scale(1.02);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
  }
  .btn-buy-now, .btn-whatsapp {
    flex: 1 1 100%;
  }
  .main-product-image {
    max-height: 300px;
  }
  .thumbnail-gallery img {
    width: 60px;
    height: 60px;
  }
  .related-product-card {
    min-width: 140px;
  }
}

.blog-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.blog-logo {
  height: 50px;
  object-fit: contain;
  padding-top: 8px
}

.blog-logo h2 {
  color: #f76c08;
}
.blog-logo a{
  text-decoration: none;
}

/*side bar*/
.vertical-cube-animated-tall {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #c64727, #efad7c);
  color: hsl(0, 0%, 100%);
  padding: 40px 8px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* Added for better browser support */
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 1px;
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Hover effect */
.vertical-cube-animated-tall:hover {
  background: linear-gradient(135deg, #efad7c, #c64727);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Mobile Animation */
@media (max-width: 600px) {
  .vertical-cube-animated-tall {
    animation: slideInRight 1s ease forwards;
    padding: 40px 8px; /* Corrected padding */
  }
}

/* Animation Keyframes using transform instead of left */
@keyframes slideInRight {
  0% {
    transform: translate(-100px, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

/* WhatsApp Floating Button Style */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/*product detail page*/
.container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  gap: 30px;
  margin: auto;
  width: 90%;
  margin-top: 90px;
  }

.left-1 {
  flex: 1;
  min-width: 300px;
}

.main-img {
  width:100%;
  height:400px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  object-fit: cover;
}


.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
@media (max-width: 600px){
  .thumbs{
    justify-content: center;
  }
}
.thumbs img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbs img:hover {
  border-color: #25D366;
}

.right-1 {
  flex: 1;
  min-width: 300px;
}

.title {
  font-size: 28px;
    color: #f76c08;
  margin-bottom: 10px;
}

.desc {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}


/* Suggested Section */
.suggested-section {
    background: #fff;
    box-shadow: none;
    padding: 40px 24px 32px 24px;
    margin: 40px auto 0 auto;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 48px);
    max-width: 1100px;
}
.suggested-section h2 {
    text-align: center;
    width: 100%;
}
.suggested-card {
    background: none;
    box-shadow: none;
    border: none;
    padding: 10px 10px 20px 10px;
    text-align: center;
}
.suggested-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.suggested-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin: 10px 0 5px 0;
}
.suggested-card .price {
    font-weight: bold;
    color: #b02f17;
    margin-bottom: 10px;
    display: block;
}
.suggested-card .buy-btn {
    background: #f76c08;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s;
    display: inline-block;
}
.suggested-card .buy-btn:hover {
    background: #b02f17;
}

.suggested-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}
.suggested-card {
    flex: 0 0 210px;
    max-width: 210px;
    width: 210px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}
.suggested-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px auto;
}
@media (max-width: 900px) {
    .suggested-card {
        flex: 0 0 45%;
        max-width: 45%;
        width: 180px;
        height: 320px;
    }
    .suggested-card img {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 600px) {
    .suggested-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100vw;
        justify-items: center;
    }
    .suggested-card {
        width: 95vw;
        max-width: 340px;
        height: auto;
        margin: 0 auto 20px auto;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .suggested-card img {
        width: 90vw;
        max-width: 280px;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .suggested-card {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .title {
    font-size: 22px;
    color: #f76c08;
  }

  .desc {
    font-size: 14px;
  }

  .main-img {
    width: 100%;
    height:226px;
  }

  .thumbs img {
    width: 60px;
    height: 60px;
  }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .suggested-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .product {
    width: 180px;
  }

  .suggested-card {
    flex: 1 1 100%;
  }

  .main-img {
    height: 226px;
    width: 100%x;
  }
}

/*add to cart*/

.add-cart-btn {
  background-color: #f76c08;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.add-cart-btn:hover {
  background-color: #da7706;
}
/* Floating Cart Icon */
.floating-cart {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #f76c08;
color: rgb(255, 255, 255);
font-size: 20px;
padding: 12px 16px;
border-radius: 50px;
text-decoration: none;
z-index: 1000;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 8px;
transition: background 0.3s;
}

.floating-cart:hover {
background-color: #c7710e;
}

.cart-count {
background: #fff;
color: #f59221;
font-weight: bold;
padding: 2px 8px;
border-radius: 50%;
font-size: 14px;
}

.cart-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.cart-card {
  background: white;
  padding: 16px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cart-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.cart-card p {
  font-size: 14px;
  color: #555;
}
.clear-cart-btn {
  background-color: #f76c08;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
}

.clear-cart-btn:hover {
  background-color: #d93636;
}
/* General Reset & Typography */

h1.cart-title {
  text-align: center;
  margin-top: 90px;
  font-size: 32px;
  color: #f76c08;
}

/* Cart Items Grid */
.cart-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Cart Item Card */
.cart-item-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.cart-item-card:hover {
  transform: scale(1.03);
}

.cart-item-card img {
  width: 280px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.cart-item-card h3 {
  font-size: 18px;
  margin: 8px 0;
  color: #f76c08;
}

.cart-item-card p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

/* Total Display */
.cart-total {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #1a8917;
  margin-top: 10px;
}

/* Cart Buttons Section */
.cart-buttons {
  text-align: center;
  margin: 30px 0;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1eb957;
}

.clear-cart-btn {
  background-color: #f76c08;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 5px;
  transition: background-color 0.3s ease;
}

.clear-cart-btn:hover {
  background-color: #d93636;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-item-card {
    width: 45%;
  }

  h1.cart-title {
    font-size: 26px;
  }

  .whatsapp-btn, .clear-cart-btn {
    width: 90%;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cart-item-card {
    width: 90%;
  }

  h1.cart-title {
    font-size: 22px;
  }

  .cart-total {
    font-size: 18px;
  }
}

/* Blog Details Page Styles */
.blog-details-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.blog-details-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.blog-meta {
    color: #666;
    font-size: 0.9em;
}

.blog-meta span {
    margin: 0 10px;
}

.blog-image {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.blog-body {
    line-height: 1.8;
    color: #444;
    font-size: 1.1em;
}

.blog-body h2 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.8em;
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-navigation {
    margin-top: 40px;
    text-align: center;
}

.back-to-blogs {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f76c08;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-to-blogs:hover {
    background-color: #d55a00;
}

@media (max-width: 768px) {
    .blog-details-container {
        margin: 80px auto 30px;
        padding: 0 15px;
    }

    .blog-details-content {
        padding: 20px;
    }

    .blog-header h1 {
        font-size: 2em;
    }

    .blog-body {
        font-size: 1em;
    }
}

/* Enhanced Blog Post Styles */
.blog-header-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.blog-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-details-container {
    max-width: 900px;
    margin: -100px auto 50px;
    padding: 0 20px;
    position: relative;
}

.blog-details-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.blog-image {
    margin: -40px -40px 30px;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
}

.blog-intro {
    font-size: 1.2em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.trend-section {
    display: grid;
    gap: 40px;
    margin: 40px 0;
}

.trend-item {
    position: relative;
    
}

.trend-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3em;
    font-family: 'Playfair Display', serif;
    color: #f76c08;
    opacity: 0.3;
    line-height: 1;
}

.trend-item h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.trend-item p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #666;
}

.blog-conclusion {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    font-style: italic;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.tag {
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #666;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #f76c08;
    color: #fff;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-to-blogs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f76c08;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-blogs:hover {
    transform: translateX(-5px);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    color: #666;
    font-size: 0.9em;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5em;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-details-content {
        padding: 20px;
    }

    .blog-image {
        margin: -20px -20px 20px;
    }

    .blog-image img {
        height: 300px;
    }

    .trend-item {
        padding-left: 60px;
    }

    .trend-number {
        font-size: 2.5em;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Blog Page Styles */
.blog-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Sidebar Styles */
.blog-sidebar, .blog-sidebar-right {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    height: fit-content;
}

.author-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.author-info h3 {
    font-family: 'Prata', serif;
    color: #333;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.blog-categories h4, .blog-tags-sidebar h4 {
    font-family: 'Prata', serif;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-categories ul {
    list-style: none;
    padding: 0;
}

.blog-categories li {
    margin-bottom: 0.8rem;
}

.blog-categories a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.blog-categories a:hover {
    color: #d4af37;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
}

.tag-cloud .tag:hover {
    background: #d4af37;
    color: white;
}

/* Main Content Styles */
.blog-main-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.blog-article {
    padding: 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-header h1 {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.blog-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.featured-image {
    margin: -2rem -2rem 2rem;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.trend-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.trend-card:hover {
    transform: translateY(-5px);
}

.trend-icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trend-icon i {
    font-size: 1.5rem;
    color: white;
}

.trend-card h2 {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.trend-card p {
    color: #666;
    line-height: 1.6;
}

.content-conclusion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.quote-box {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.quote-box i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.quote-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

/* Blog Footer */
.blog-footer {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.share-section {
    text-align: center;
    margin-bottom: 2rem;
}

.share-section h4 {
    font-family: 'Prata', serif;
    color: #333;
    margin-bottom: 1rem;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.pinterest { background: #bd081c; }

.back-to-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.back-to-blogs:hover {
    color: #d4af37;
}

/* Right Sidebar Styles */
.related-posts h4 {
    font-family: 'Prata', serif;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.related-post-card {
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h5 {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.related-post-card a {
    display: block;
    padding: 0.8rem 1rem;
    background: #d4af37;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
}

.related-post-card a:hover {
    background: #b38f2e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid-layout {
        grid-template-columns: 250px 1fr;
    }
    .blog-sidebar-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-grid-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        display: none;
    }
    .trend-grid {
        grid-template-columns: 1fr;
    }
    .blog-header h1 {
        font-size: 2rem;
    }
    .featured-image img {
        height: 300px;
    }
}

/* Blog Header Styles */
.blog-header-main {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-header-main .logo {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: #333;
}

.blog-header-main nav {
    display: flex;
    gap: 2rem;
}

.blog-header-main nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-header-main nav a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .blog-header-main nav {
        display: none;
    }
    .blog-header-main nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .menu-toggle {
        display: block;
    }
}

/* Blog Modern Styles */
.blog-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-modern-hero {
    position: relative;
    margin: 2rem 0 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    color: white;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.blog-modern-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper {
    padding: 2rem 0;
}

.blog-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trends-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.trend-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trend-item.reverse {
    direction: rtl;
}

.trend-item.reverse .trend-details {
    direction: ltr;
}

.trend-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trend-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.trend-image:hover img {
    transform: scale(1.05);
}

.trend-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.trend-details {
    padding: 1rem;
}

.trend-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.trend-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.trend-tips {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.trend-tips h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.trend-tips ul {
    list-style: none;
    padding: 0;
}

.trend-tips li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.trend-tips li:before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

.blog-conclusion {
    margin: 6rem 0;
}

.conclusion-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.conclusion-box i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.conclusion-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.tag {
    background: #f8f9fa;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
}

.tag:hover {
    background: #d4af37;
    color: white;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-to-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.back-to-blogs:hover {
    color: #d4af37;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons span {
    color: #666;
    font-size: 0.9rem;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }

/* Responsive Design */
@media (max-width: 992px) {
    .trend-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .trend-item.reverse {
        direction: ltr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .trend-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-modern-container {
        padding: 0 1rem;
    }
    .hero-image-wrapper {
        height: 400px;
    }
    .hero-content {
        padding: 2rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .trend-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggested-card a {
  display: inline-block;
  background: #f76c08;
  color: #fff !important;
  padding: 0.6em 1.5em;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.suggested-card a:hover {
  background: #d95c06;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-links a {
  font-size: 1.25rem;
  color: #f76c08;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-block;
  margin: 2px 0;
}
.contact-links a:hover {
  color: #b12704;
  text-decoration: underline;
}
