button {
    background-color: #8B0000; /* Dark Red */
    color: #fff;
    border: 2px solid #8B0000;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
  }
  
  button:hover {
    background-color: #ffed88; /* Gold */
    color: #8B0000;
    border-color: #ffe658;
    box-shadow: 0 6px 14px rgba(255, 215, 0, 0.4);
    border: solid 1px #8B0000;
  }
  
 button:active {
    background-color: #DAA520; /* GoldenRod */
    color: #fff;
    border-color: #DAA520;
    transform: scale(0.97);
    box-shadow: 0 3px 6px rgba(218, 165, 32, 0.5);
  }
  












.heding-tittle{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reusable Section Heading Style */
.section-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    
    margin: 40px 0 20px;
    position: relative;
    display: inline-block;
  }
  
  .section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #520000;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  .section-img{
    width: 100%;
    height: 100%;
  }
  .section-img img{
    width: 100%;
    height: 100%;
  }


.card-slider-section{
    background-color: #ffe3e3;
}

  .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
   
  }
  
  .card-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
  
 
  }
  
  .card-slider::-webkit-scrollbar {
    display: none;
  }
  
  .card-slide {
    flex: 0 0 80%;
    max-width: 300px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    padding: 20px;
    text-align: left;
  }
  
  .card-slide img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 120, 215, 0.8);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 1;
    font-size: 20px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  
  .nav-btn:hover {
    background: rgba(0, 120, 215, 1);
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  /* Responsive widths */
  @media (min-width: 768px) {
    .card-slide {
      flex: 0 0 45%;
    }
  }
  
  @media (min-width: 1024px) {
    .card-slide {
      flex: 0 0 22%;
    }
  }





  .gallery-section {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
   
  }
  
  .gallery-buttons {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;

  }
  
  
    
   
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .gallery-item {
    width: 300px;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .gallery-item img {
    width: 100%;
    border-radius: 6px;
  }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* default: mobile */
  gap: 20px;
  padding: 0 10px;
  justify-content: center;
}
  
/* Tablet: 2 columns (already defaulted) */
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

 
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shop-category-section {
  text-align: center;
  padding: 40px 20px;
}

.section-header h2 {
  font-size: 2rem;
   
  margin-bottom: 10px;
}

.section-header p {
 
  font-size: 1rem;
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-item h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #444;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.g-contact-wrapper {
  background-color: #f2f2f2;
  padding: 40px 20px;
  text-align: center;
}

.g-contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.g-contact-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.g-contact-details p {
  font-size: 1rem;
  color: #444;
  margin: 10px 0;
}

.g-contact-details i {
  margin-right: 8px;
  color: #007BFF;
}

.g-contact-details a {
  color: #007BFF;
  text-decoration: none;
}

.g-contact-details a:hover {
  text-decoration: underline;
}

.g-contact-social {
  margin-top: 25px;
  
}

.g-contact-social a {
  display: inline-block;
  margin: 0 10px;
  font-size: 2REM;
  color: #8B0000;
   

  border-radius: 50%;
  transition: background-color 0.3s;
}

.g-contact-social a:hover {
    color: #ff4545;
}

/* Responsive */
@media (max-width: 480px) {
  .g-contact-social a {
    margin: 8px;
    font-size: 1rem;
    padding: 10px;
  }
}
