/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #000;
  }
  
  /* ===== TOP TEXT BAR ===== */
  .top-rotating-text {
    background-color: #7b603a;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    height: 40px;
    overflow: hidden;
  }
  
  .top-rotating-text .sentence {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 10px;
    animation: fade 3s infinite;
  }
  
  .top-rotating-text .sentence.active {
    display: block;
  }
  
  @keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { opacity: 0; }
  }
  
  /* ===== HEADER SECTION ===== */
  .main-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .nav-left {
    list-style: none;
    display: flex;
    gap: 25px;
    flex: 1;
  }
  
  .nav-left li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }
  
  .logo-container {
    flex: 1;
    text-align: center;
  }
  
  .logo {
    max-height: 108px;
  }
  
  .nav-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
  
  .nav-icons a {
    color: #000;
    font-size: 20px;
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #7b603a;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease-in-out;
  }
  
  .nav-links a:hover {
    color: #7b603a;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .nav-icons a {
    color: #333;
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
  }
  
  .nav-icons a:hover {
    color: #7b603a;
    transform: scale(1.2);
    cursor: pointer;
  }

  /* hero section start */
  /* Hero Banner */
  .hero-slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .slideshow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    animation: slideshow 24s infinite ease-in-out;
    z-index: 0;
    filter: brightness(0.5);
  }
  
  @keyframes slideshow {
    0%   { background-image: url('../images/jwell-1.jpg'); }
    25%  { background-image: url('../images/jwell-2.jpg'); }
    50%  { background-image: url('../images/jwell-3.jpg'); }
    75%  { background-image: url('../images/jwell-4.jpg'); }
    100% { background-image: url('../images/jwell-1.jpg'); }
  }
  
  
  .hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    margin-top: 332px;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    color: gold;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    color: #eee;
    margin-bottom: 2rem;
  }
  
  .hero-btn {
    background-color: gold;
    color: #111;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: #d4af37;
    color: white;
  }
  /* new collection section */
  .card-img-top {
    height: 220px;
    object-fit: cover;
  }
  
  .badge {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
  }
  
  .product-image {
    position: relative;
    overflow: hidden;
    height: 260px;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #c0392b;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .product-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
  }
  
  .product-desc {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px; /* reduced space */
  }
  
  .add-cart-btn {
    background-color: #7b603a;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .add-cart-btn:hover {
    background-color: #5e472b;
  }
  
  .collection-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .collection-card:hover {
    transform: translateY(-5px);
  }
  
  .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 10px;
  }
  /* Improve card image responsiveness and height */

  .card-img-top {
    height: 260px; /* ya jitna chahiye fixed height */
    object-fit: cover;
  }

  .badge {
    font-size: 12px;
    padding: 5px 10px;
  }
  .hover-zoom {
    transition: transform 0.4s ease;
  }

  .hover-zoom:hover {
    transform: scale(1.08);
  }

  .btn.transition-all {
    transition: all 0.3s ease-in-out;
  }

  .btn.transition-all:hover {
    background-color: #f8d42b !important;
    color: #000 !important;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
  }
  img.img-fluid {
    height: unset !important;
  }
  
  
  /* Ensure the Add to Cart button doesn't stretch full width */
  /* footer start */
  .footer {
    background-color: #1a1a1a;
    color: #d4af37;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
  }
  
  .footer-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #d4af37;
    letter-spacing: 1px;
  }
  
  .footer-tagline {
    font-size: 16px;
    color: #e0c28d;
    margin-bottom: 25px;
  }
  
  .footer-links {
    margin-bottom: 20px;
  }
  
  .footer-links a {
    color: #f0e6cf;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-copy {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
  }
  