/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Push content below fixed top bar + navbar */
body {
  padding-top: 80px; /* top bar (80px) + navbar (60px) */
}

/* Top Bar */
.top-bar {
  background-color: #000;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  height: 80px; /* consistent fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar .logo {
  height: 80px; /* scales logo neatly */
  width: auto;
  display: block;
}

/* Hamburger Icon (inside top bar) */
.hamburger {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  z-index: 1102;
  display: none; /* visible only on mobile */
}

/* Desktop Navbar */
.desktop-nav {
  background-color: #f8d7da;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  position: fixed;
  top: 80px; /* directly below top bar */
  left: 0;
  width: 100%;
  z-index: 1000;
}


.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.desktop-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.desktop-nav a:hover {
  color: #ff4081;
}

/* Mobile Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background-color: #f8d7da;
  transition: 0.4s ease;
  z-index: 1200;
  padding-top: 80px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  padding: 15px 25px;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  display: block;
}

.mobile-menu a:hover {
  color: #ff4081;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .desktop-nav {
    display: none;
  }
}

/* ===== Banner Start ===== */
.banner {
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding: 20px;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

@media (max-width: 768px) {
  .banner {
    background-image:url('../images/banner mobile.png');
    min-height: 480px;
    background-position: center top;
  }

  .banner::after {
    background: rgba(0,0,0,0.25);
  }

  .banner-content h1 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .banner-brand {
    font-size: 18px;
  }
}


/* ===== Banner End ===== */


/*products categories*/

.category-section {
  padding: 40px 20px;
  text-align: center;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.category-item {
  width: 150px;
}

.category-item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f4d6c6;
  transition: transform 0.3s ease;
}

.category-item img:hover {
  transform: scale(1.05);
}

.category-item p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
/**product categories end*/

/**product grid**/
.product-grid-section {
  padding: 60px 20px;
  background-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card img {
    height: 200px;
  }
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fafafa;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #333;
}

.product-card p {
  margin-bottom: 15px;
  color: #e91e63;
  font-weight: 600;
  font-size: 16px;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/**product grid end**/

/** card effect start**/
.earring-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background: #fff;
}

.earring-card {
  width: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.earring-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.earring-card img {
  width: 100%;
  display: block;
}

.earring-text {
  padding: 15px 10px;
}

.earring-text small {
  display: block;
  color: #666;
  font-size: 12px;
  margin-bottom: 5px;
}

.earring-text h3 {
  margin: 0;
  font-size: 20px;
  font-family: 'Pacifico', cursive; /* Optional for elegant look */
  color: #b3002d;
}

.earring-text p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
}
@media (max-width: 600px) {
  .earring-card {
    width: 45%;
  }
}
/**card effect end**/



/**Shop by Trend Start**/
.shop-by-trend {
  padding: 50px 20px;
  text-align: center;
}

.shop-by-trend h2 {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.trend-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trend-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  flex: 1 1 calc(50% - 20px);
  max-width: 600px;
  transition: transform 0.3s ease;
}

.trend-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.trend-item:hover img {
  transform: scale(1.05);
}

.trend-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 0 10px;
}

.trend-text p {
  font-family: 'Cursive', sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
}

.trend-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

/* ? Responsive: Mobile screens */
@media (max-width: 768px) {
  .trend-grid {
    flex-direction: column;
    gap: 16px;
  }

  .trend-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .trend-text p {
    font-size: 16px;
  }

  .trend-text h3 {
    font-size: 18px;
  }
}
/**Shop By Trend End**/

/**product category segment**/
.pro-cate {
  padding: 60px 20px;
  background: url("images/bg.jpg") center center/cover no-repeat;
}

.pro-cate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pro-cate-item {
  flex: 1 1 calc(25% - 20px);
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}

.pro-cate-item:hover {
  transform: scale(1.03);
}

.pro-cate-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.pro-cate-item h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pro-cate-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .pro-cate-item h3 {
    font-size: 16px;
  }
}

/** Product Category Segment End**/

/** footer**/

.footer-dark {
  background-color: #0a1f44;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.footer-top-links {
  text-align: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top-links a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-top-links a:hover {
  text-decoration: underline;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column form {
  display: flex;
}

.footer-column form input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 3px 0 0 3px;
}

.footer-column form button {
  background: #ffcc00;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}

.footer-column form button:hover {
  background: #e6b800;
}

.social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
}
/**footer end**/


/** Products Page**/
/* Set 1 Banner */
.set1-banner {
    position: relative;
    background:url(../images/inner.png) center/cover no-repeat;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.set1-banner h1 {
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Set 1 Grid */
.set1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1300px;
    margin: auto;
}

.set1-product {
    border: 1px solid #eee;
    padding: 10px;
    background: white;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.set1-product:hover {
    transform: translateY(-5px);
}

.set1-product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Set 1 Product Info */
.set1-product h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    font-weight: normal;
}
.set1-price {
    font-size: 14px;
    color: #666;
}
.set1-price span {
    color: #e63946;
    font-weight: bold;
    margin-left: 5px;
}
/** Product page**/




/* Single Product Page */
.single-product-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.product-images .main-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-slider img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbnail-slider img:hover {
    border: 2px solid #000;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.price {
    font-size: 1.4rem;
    color: #222;
    font-weight: bold;
}

.color-options {
    margin: 1rem 0;
}

.color-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    cursor: pointer;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.quantity-control button {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
}

.product-buttons button {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.add-to-cart {
    background: #1f1f6d;
    color: white;
}

.buy-now {
    background: #ff4500;
    color: white;
}

@media (max-width: 768px) {
    .single-product-container {
        flex-direction: column;
    }
}
/** Single Product Page End**/


/** B2B Page Class**/

/* Banner */
.b2b1 {
    position: relative;
    text-align: center;
    width: 100%;
}

.b2b1 img {
    width: 100%;
    height: auto;
}

.b2b2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    text-align: center;
}

.b2b2 h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.b2b2 p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.b2b2 small {
    font-size: 0.9rem;
}

/* Product Section */
.b2b3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    background-color: #fff;
}

.b2b4 {
    width: 250px;
    border: 1px solid #ddd;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.b2b4 img {
    width: 100%;
    height: auto;
}

.b2b5 {
    font-weight: bold;
    padding: 10px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
}



/* General styling */
.b3b1, .b3b2 {
    padding: 60px 10%;
}

.b3b1-container, .b3b2-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* First Section */
.b3b1-text {
    flex: 1;
}
.b3b1-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.b3b1-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}
.b3b1-btn {
    background: #d4a017;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
.b3b1-image {
    flex: 1;
}
.b3b1-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Second Section */
.b3b2-container {
    flex-direction: row-reverse;
}
.b3b2-text {
    flex: 1;
}
.b3b2-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.b3b2-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}
.b3b2-btn {
    background: #d4a017;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
.b3b2-image {
    flex: 1;
}
.b3b2-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .b3b1-container, .b3b2-container {
        flex-direction: column;
        text-align: center;
    }
    .b3b2-container {
        flex-direction: column;
    }
    .b3b1-text, .b3b2-text {
        order: 2;
    }
    .b3b1-image, .b3b2-image {
        order: 1;
    }
    .b3b1-text h2, .b3b2-text h2 {
        font-size: 1.5rem;
    }
    .b3b1-text p, .b3b2-text p {
        font-size: 0.95rem;
    }
}



/*Contact CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f9fc;
    color: #333;
}

.contact1 {
    padding: 40px;
}

.contact2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact3, .contact8 {
    background: white;
    flex: 1;
    min-width: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact4 {
    background: #0b1e55;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.contact5 {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.contact6 {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.contact6 h3 {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #0b1e55;
}

.contact6 p {
    font-size: 0.95rem;
}

.contact7 {
    font-size: 2rem;
    color: #0b1e55;
}

.contact9 {
    padding: 20px;
}

.contact10 {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.contact10 input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.contact9 textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.contact9 input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
}

.contact11 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact11 img {
    height: 40px;
    border: 1px solid #ddd;
}

.contact12 {
    background: #0b1e55;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 3px;
}

.contact12:hover {
    background: #092045;
}

@media (max-width: 768px) {
    .contact5 {
        flex-direction: column;
        border: none;
    }
    .contact10 {
        flex-direction: column;
    }
}



