/* page 1 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f6f4f1;
  /* padding:40px; */
}
a{
    text-decoration: none;
}

.top-header {
  background: #000a1f;

  border-radius: 25px 25px 0 0;

  height: 95px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 35px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Logo */

.logo {
  width: 53px;
  height: auto;
  font-weight: 700;

  letter-spacing: 7px;

  color: #1e1e1e;
}
.logo img {
  width: 100%;
  height: auto;
}
/* Middle Features */

.features {
  display: flex;

  gap: 70px;

  align-items: center;
}

.feature-item {
  display: flex;

  align-items: center;

  gap: 12px;
}

.icon {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #faf5f0;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #b98b63;

  font-size: 20px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
  font-size: 14px;

  color: #f6f4f1;

  font-weight: 600;

  margin-bottom: 2px;
}

.feature-item p {
  font-size: 12px;

  color: #999;
}

/* Profile */

.profile {
  width: 46px;

  height: 46px;

  border-radius: 50%;

  border: 1px solid #ddd;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 22px;

  color: #fbad19;

  cursor: pointer;

  transition: 0.3s;
}

.profile:hover {
  background: #fbad19;

  color: #fff;

  border-color: #b98b63;
}

/* Responsive */

@media (max-width: 992px) {
  .features {
    display: none;
  }

  .logo {
    font-size: 28px;

    letter-spacing: 4px;
  }

  .top-header {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .top-header {
    height: 80px;
  }

  .logo {
    font-size: 22px;

    letter-spacing: 3px;
  }

  .profile {
    width: 40px;
    height: 40px;
  }
}
/* questionpage1 */
.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

/*==========================
Hero
==========================*/

.hero {
  text-align: center;

  padding: 39px 0 40px;
}

.hero h1 {
  font-size: 54px;

  font-weight: 800;

  line-height: 1.1;

  color: #000a1f;
}

.hero h1 span {
  display: block;

  color: #b08968;
}

.hero p {
  margin-top: 18px;

  font-size: 24px;

  color: #777;
}

.divider {
  margin-top: 25px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;
}

.divider span {
  width: 70px;

  height: 4px;

  background: #b08968;

  border-radius: 50px;
}

.divider .dot {
  width: 8px;

  height: 8px;

  background: #b08968;

  border-radius: 50%;
}

/*====================
Responsive
====================*/

@media (max-width: 992px) {
  .hero {
    padding: 60px 0 30px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 45px 0 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .divider span {
    width: 50px;
  }
}
/* bag selection category */
/*==========================
Bag Categories
==========================*/

.bag-category-section {
  padding: 20px 0 60px;
}

.bag-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.bag-card {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  position: relative;

  cursor: pointer;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.bag-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.bag-image {
  height: 220px;

  overflow: hidden;
}

.bag-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.bag-card:hover img {
  transform: scale(1.08);
}

.bag-icon {
  position: absolute;

  left: 50%;

  top: 200px;

  transform: translateX(-50%);

  width: 64px;

  height: 64px;

  background: #fff;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  color: #b08968;

  font-size: 22px;

  transition: 0.3s;
}

.bag-card:hover .bag-icon {
  background: #fbad19;

  color: #fff;
}

.bag-content {
  text-align: center;

  padding: 50px 22px 28px;
}

.bag-content h3 {
  font-size: 26px;

  margin-bottom: 12px;

  color: #222;
}

.bag-content p {
  font-size: 15px;

  color: #777;

  line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
  .bag-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .bag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bag-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .bag-image {
    height: 240px;
  }

  .bag-content h3 {
    font-size: 22px;
  }
}
/*=========================
Collection CTA
==========================*/

.collection-section {
  padding: 15px 0 80px;
}

.collection-box {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 10px;

  flex-wrap: wrap;

  text-align: center;
}

.collection-icon {
  font-size: 22px;

  color: #b08968;
}

.small-text {
  font-size: 16px;

  color: #888;

  margin-bottom: 5px;
}

.collection-content h4 {
  font-size: 22px;

  font-weight: 500;

  color: #333;
}

.collection-content a {
  color: #111;

  font-weight: 600;

  text-decoration: underline;

  transition: 0.3s;
}

.collection-content a:hover {
  color: #b08968;
}

/* Mobile */

@media (max-width: 768px) {
  .collection-content h4 {
    font-size: 18px;
  }

  .small-text {
    font-size: 14px;
  }
}
/* backpage subheading page */
.subcategory-page {
  padding: 80px 0;

  background: #f8f6f3;
}

.subcategory-page h1 {
  font-size: 58px;

  text-align: center;

  margin-bottom: 10px;
}

.subcategory-page span {
  color: #b08968;
}

.subcategory-page p {
  text-align: center;

  color: #777;

  font-size: 22px;

  margin-bottom: 50px;
}

.subcategory-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.sub-card {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.sub-card:hover {
  transform: translateY(-8px);
}

.sub-card img {
  width: 100%;

  height: 230px;

  object-fit: cover;
}

.sub-card h3 {
  padding: 25px;

  text-align: center;

  color: #222;
}
.bag-icon img {
  width: 31px;
  height: 31px;
}

.icon img {
  width: 31px;
  height: 31px;
}