* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
 font-family: "Cal Sans", sans-serif;
}
.hero-section {
  background-image: url('images/empty-room.avif');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}
.phone-image {
  max-width: 100%;
  width: 360px;
  z-index: 2;
}
.hero-text {
  z-index: 3;
}

.oran {
  color: #f28c28;
}
.btn {
  background-color: #f28c28;
  color: #fff;
  border: none;
}
.but h5 {width: fit-content;
 text-align: end;
  background-color: #f28c28;
  color: white;
  border-radius: 30px;
  padding: 10px;

  margin: auto;
}

.left-content h1 span{
  color: #f28c28;
  
}

.left-content h1 {
  font-size: 3rem;
  font-weight: 600;
  
}
.left-content p {
  color: #666;
  font-size: 1.5rem;
}
.btn-explore {
  background-color: #f28c28;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
}
.btn-story {
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-cardd, .discount-card {
  border-radius: 16px;
  overflow: hidden;
}
.discount-card h4 {
  font-weight: 600;
  font-size: 2rem;
}
.discount-card {
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 16px;
}
.discount-card .btn {
  background-color: white;
  color: black;
  border-radius: 20px;
  padding: 8px 20px;
  border: none;
}
.product-img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .left-content {
    text-align: center;
    margin-bottom: 30px;
  }
}
.more {
    background-color: #ffefe0;
    margin: 0px;

}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* subtle shadow */
  margin-bottom: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background-color: #f28c28;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  color: white;
  font-size: 25px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.product-image {
  max-width: 100%;
  height: auto;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.product-card {
  margin-bottom: 30px;
}

.cta-button {
  position: relative;
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 50px;
}

.cta-badge {
  position: absolute;
  top: -12px;
  right: -20px;
  background: #f7b500;
  padding: 4px 10px;
  font-size: 12px;
  color: #000;
  border-radius: 50px;
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('images/modern-office-space-interior.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  color: white;
  border-radius: 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 span {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.hero p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #e0e0e0;
}

.btn-hero {
  padding: 12px 28px;
  border-radius: 30px;
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #e6e6e6;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 50px 20px;
    text-align: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
.nav-item {
  font-weight: 600;
  color: black;
}


.collection-container {
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.collection-header {
  text-align: center;
  margin-bottom: 30px;
}

.collection-header h1 {
  margin-bottom: 10px;
  margin-top: 25px;
}

.collection-header p {
  color: #555;
  font-size: 1rem;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.category-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background-color: #f1f1f1;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.category-buttons .active {
  background-color: #000;
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.product-card {
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-name {
  font-weight: 600;
  margin: 5px 0;
}

.product-price {
  font-weight: 500;
  color: #333;
}

.add-cart {
  margin-top: 10px;
  background-color: #f28c28;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.see-all-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.see-all-btn button {
  padding: 12px 24px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.see-all-btn button:hover {
  background-color: #45a049;
}

@media (max-width: 600px) {
  .collection-header h1 {
    font-size: 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}









  
footer {
  background-color: #1d1a16;
  color: #fff;
}

.footer-top {
  padding: 40px 20px;
  background-color: #2a2723;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-top-left {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-top-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-top-left p {
  color: #ccc;
  font-size: 1rem;
}

.footer-subscribe {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-subscribe input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  background-color: transparent;
  color: white;
  border-radius: 5px;
  flex: 1;
  min-width: 200px;
}

.footer-subscribe button {
  background-color: orange;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-contact p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 5px 0;
}

.footer-contact p i {
  margin-right: 8px;
  color: orange;
}

.footer-bottom {
  border-top: 1px solid #333;
 
  align-items: center;
  padding: 20px;
  background-color: #1d1a16;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: orange;
}

@media (max-width: 768px) {
  .footer-top, .footer-main, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-subscribe {
    flex-direction: column;
    width: 100%;
  }

  .footer-subscribe input, .footer-subscribe button {
    width: 100%;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }
}
