.{ margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.cart-icon {
  font-size: 20px;
  cursor: pointer;
}
.hero {
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1500px;
    height: 800px;
    object-fit: cover; 
    z-index: 1; 
}

.hero-text {
    position: relative;
    z-index: 2; 
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* SECTION COMMON */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

/* SHOP BY (5 CARDS) */
.grid-5 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 180px;
}

.card img {
  width: 220px;
  height: 220px;
}

.card p {
  margin-top: 10px;
  font-weight: 600;
}
/* FULL WIDTH FIX */
.craft {
  display: flex;
  width: 1440px;          
  height: 680px;         
  margin: 0;
  padding: 0;
  background: #0b1f3a;
}

/* LEFT SIDE */
.craft-text {
  width: 50%;
  padding: 80px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.craft-text p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.craft-text button {
  margin-top: 25px;
  padding: 12px 30px;
  background: white;
  border: none;
  cursor: pointer;
  width: fit-content;
}

/* RIGHT SIDE IMAGE */
.craft-img {
  width: 50%;
  height: 100%;
}

.craft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
}


/* LATEST JEWELRY */
.grid-3 {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.grid-3 img {
  width: 400px;
  height: 400px;
}

.view-gallery {
  padding: 12px 30px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}
.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
  background: #ffffff;
}
.reviews-title {
display: flex;
justify-content: center;
  width: 100%;
  margin-bottom: 50px;
}


.reviews-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.review-card {
  width: 392px;
  height: 206px;
  border: 1px solid black;
  padding: 30px;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 40px;
  color: #3684d2;
  font-weight: bold;
}

.review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 25px;
}

.reviewer {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.services div {
  text-align: center;
}

.services img {
  width: 400px;
  height: 400px;
  margin-bottom: 15px;
}

/* FOOTER */
.footer-container {
  background: #111;
  color: #fff;
  padding: 60px;
}


/* FOOTER */
.footer-container{
  background:#e0f2f1;
  padding:50px 10%;
}

.stay-in-touch{
  display:flex;
  background:white;
  max-width:2000px;
  margin:auto;
  box-shadow:0 4px 15px rgba(0,0,0,0.1)
}

.subscribe-box{
  width:400px;
  padding:40px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.subscribe-box h2,
.subscribe-box p{
  color:rgb(69, 69, 87);
}

.ring-image img{
  width:750px;
  height:auto;
}

.btn-subscribe{
  padding:10px 30px;
  background:#4c5a7d;
  color:white;
  border:none;
  cursor:pointer;
}

/* FOOTER LINKS */
.footer-links{
  display:flex;
  gap:100px;
  margin:50px 0;
}

.footer-column a{
  display:block;
  color:#555;
  text-decoration:none;
  line-height:2;
}

/* BOTTOM BAR */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  border-top:1px solid #ccc;
  padding-top:20px;
}
.footer-icons i {
    font-size: 24px;       
    margin-left: 15px;    
    color: #4267B2;       
    cursor: pointer;
    transition: 0.3s;
}

.footer-icons i:hover {
    transform: translateY(-5px); 
    opacity: 0.8;
}