@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  text-transform: capitalize;
}

html, body {
  overflow-x: hidden;
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow", sans-serif;
  --nav-font: "Inter", sans-serif;
}

nav {
  padding: 20px 80px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
nav .logo {
  align-items: center;
  display: flex;
}
nav .logo img {
  width: 50px;
  height: 40px;
}
nav .logo h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
nav .logo h1 span {
  color: #0bbebe;
}
nav .list ul {
  display: flex;
  gap: 20px;
}
nav .list ul li {
  list-style-type: none;
}
nav .list ul li a {
  color: #0bbebe;
  text-decoration: none;
  font-family: var(--nav-font);
}

.bars {
  position: absolute;
  right: 30px;
  font-size: 50px;
  color: #000;
  display: none;
  cursor: pointer;
}

.xmark {
  display: none;
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  cursor: pointer;
  z-index: 2000;
}

@media (max-width: 936px) {
  .bars {
    display: block;
  }
  .xmark {
    left: 45%;
    display: block;
  }
  .list ul {
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 0px;
    justify-content: center;
    align-items: center;
    width: 52%;
    height: 100vh;
    line-height: 1.4;
    background-color: #00b894;
  }
  .list ul li a {
    font-size: 20px;
    color: #fff !important;
  }
  .list ul li a:hover {
    border-bottom: 1px solid #fff;
  }
}
@media (max-width: 502px) {
  .logo {
    margin-left: -50px;
  }
  .logo h1 {
    font-size: 20px;
  }
}
main {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main h1 {
  color: #303030;
  font-family: var(--heading-font);
  font-size: 40px;
}
main p {
  text-align: center;
  color: #333;
  margin: 20px 50px;
  font-family: var(--nav-font);
}

.btn > button {
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #000;
  transition: 0.5s ease-in-out;
}
.btn > button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  main {
    padding: 40px 20px;
    text-align: center;
  }
  main h1 {
    font-size: 28px;
  }
  main p {
    margin: 15px 10px;
    font-size: 14px;
  }
  main img {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }
  main .btn > button {
    padding: 8px 16px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  main h1 {
    font-size: 22px;
  }
  main p {
    font-size: 13px;
    margin: 10px;
  }
  main img {
    max-width: 300px;
  }
}
.offers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}
.offers .offer-card {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  transition: 0.3s ease-in-out;
}
.offers .offer-card img {
  max-width: 180px;
  height: auto;
  flex-shrink: 0;
}
.offers .offer-card .offer-text h2 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}
.offers .offer-card .offer-text p {
  color: #999;
  margin-bottom: 15px;
  font-size: 14px;
}
.offers .offer-card .offer-text a {
  font-family: var(--nav-font);
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.offers .offer-card .offer-text a:hover {
  color: #ff3366;
}

/*  Responsive */
@media (max-width: 768px) {
  .offers .offer-card {
    flex-direction: column;
    text-align: center;
  }
  .offers .offer-card img {
    margin-bottom: 15px;
  }
}
.product-section {
  padding: 50px 20px;
  text-align: center;
}
.product-section .tabs {
  margin-bottom: 30px;
}
.product-section .tabs h1 {
  font-size: 40px;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}
.product-section .tabs button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  margin: 0 15px;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  color: #333;
}
.product-section .tabs button.active {
  color: #000;
}
.product-section .tabs button.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  bottom: 0;
}
.product-section .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.product-section .products .product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
}
.product-section .products .product-card:hover {
  transform: translateY(-5px);
}
.product-section .products .product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.product-section .products .product-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}
.product-section .products .product-card .price {
  font-size: 16px;
  font-weight: 600;
  color: #e74c3c;
}
.product-section .products .product-card .price .old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 8px;
}
.product-section .products .product-card .badge {
  position: absolute;
  top: 15px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
}
.product-section .products .product-card .badge.new {
  left: 15px;
  background: #00b894;
}
.product-section .products .product-card .badge.discount {
  right: 15px;
  background: #ff7675;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .product-section .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-section .tabs button {
    font-size: 16px;
    margin: 0 8px;
  }
  .product-section .products {
    grid-template-columns: 1fr;
  }
}
.main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.712)), url(img/lighting-inspiration-for-modern-bedroom-design.jpg);
  background-position: center;
  background-size: cover;
  height: 70vh;
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main h2 {
  font-size: 30px;
  font-family: var(--heading-font);
}
.main h1 {
  font-size: 50px;
  font-family: var(--nav-font);
  margin: 30px 10px;
}
.main p {
  text-align: center;
  font-family: var(--nav-font);
}

@media (max-width: 992px) {
  .main h2 {
    font-size: 26px;
  }
  .main h1 {
    font-size: 40px;
    margin: 20px 10px;
  }
  .main p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .main h2 {
    font-size: 22px;
  }
  .main h1 {
    font-size: 32px;
    margin: 15px 10px;
  }
  .main p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .main h2 {
    font-size: 18px;
  }
  .main h1 {
    font-size: 26px;
  }
  .main p {
    font-size: 13px;
  }
}
.footer {
  background-color: #000;
  color: #fff;
  font-family: var(--heading-font);
  padding: 60px 20px;
}
.footer .footer-container {
  max-width: 1300px;
  margin: auto;
}
.footer .footer-container .logo {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
.footer .footer-container .logo span {
  color: #fff;
}
.footer .footer-container .logo .highlight {
  color: #00bcd4;
}
.footer .footer-container .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}
.footer .footer-container .social-icons a {
  color: #fff;
  background: #1a1a1a;
  border-radius: 50%;
  padding: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer .footer-container .social-icons a:hover {
  background: #00bcd4;
}
.footer .footer-container .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.footer .footer-container .footer-columns .footer-col {
  flex: 1 1 200px;
  margin: 20px;
}
.footer .footer-container .footer-columns .footer-col h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 16px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}
.footer .footer-container .footer-columns .footer-col p {
  font-size: 14px;
  line-height: 1.6;
}
.footer .footer-container .footer-columns .footer-col ul {
  list-style: none;
  padding: 0;
}
.footer .footer-container .footer-columns .footer-col ul li {
  margin: 10px 0;
  font-size: 14px;
}
.footer .footer-container .footer-columns .footer-col ul li i {
  margin-right: 10px;
  color: #00bcd4;
}
.footer .footer-container .footer-columns .footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-container .footer-columns .footer-col ul li a:hover {
  color: #00bcd4;
}
.footer .footer-container .footer-columns .footer-col .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.footer .footer-container .footer-columns .footer-col .gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .footer .footer-columns {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-columns .footer-col {
    margin: 20px 0;
    text-align: center;
  }
  .footer .footer-columns .footer-col ul li {
    justify-content: center;
  }
  .footer .footer-columns .footer-col .gallery-grid {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */