@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Laila:wght@300;400;500;600;700&display=swap");

.home-page,
.about-page,
.contact-us-page,
.all-catalog-page,
.item-detail-page {
  display: flex;
  flex-direction: column;
  /* width: 100vw; */
  max-width: 100vw;
  /* min-height: 100vh; */
  overflow: hidden;
  padding-top: 272px;
  padding-bottom: 120px;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 84px;
  padding-bottom: 40px;
  width: 100%;
  height: 72px;
  top: 0px;
  left: 0px;
  position: fixed;
  background-color: white;
  z-index: 2;
  transition: 0.3s;
}

.header.shadow {
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.header-row {
  display: flex;
  flex-direction: row;
  width: 80%;
  align-items: center;
  justify-content: space-between;
}

.header-logo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.header-logo-text {
  font-family: "Berkshire Swash";
  font-size: 40px;
  color: #ff951c;
  font-weight: lighter;
}

.header-logo {
  position: absolute;
  left: calc(-72px - 24px);
}

.header-logo.small {
  width: 72px;
  height: 72px;
}

.header-menu-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 68px;
  font-family: "Laila";
}

.header-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  font-size: 24px;
  color: #ff951c;
}

.header-menu-item {
  cursor: pointer;
  margin: 0px;
}

.header-menu-item.selected {
  font-weight: bold;
}

.header-saved-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.header-cart-wrapper,
.header-wishlist-wrapper {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
}

.header-cart,
.header-wishlist {
  width: 100%;
  height: 100%;
}

.header-notif {
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: hotpink;
  border-radius: 50%;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: -12px;
  right: -12px;
  color: white;
  padding: 4px;
}

.home-catalog {
  width: 80%;
  margin: 0 auto;
  font-family: "Laila";
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.home-catalog-category {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.catalog-category-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.catalog-category-header-titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog-heading {
  font-size: 56px;
  color: #ff951c;
  font-weight: bold;
  margin: 0px;
}

.catalog-subheading {
  font-size: 24px;
  color: #666;
  font-weight: lighter;
  margin: 0px;
}

.catalog-see-all,
.catalog-back {
  font-size: 24px;
  color: #666;
  cursor: pointer;
}

.catalog-item-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  overflow-x: auto;
  width: 100%;
  gap: 54px;
  overflow-y: hidden;
  padding-bottom: 54px;
}

.catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 680px;
  min-width: 400px;
  gap: 24px;
  background: #f9f9f9;
  border-radius: 8px;
}

.catalog-item-image-wrapper {
  height: 520px;
  overflow: "hidden";
  position: relative;
  cursor: pointer;
}

.catalog-item-image {
  width: 100%;
  height: 100%;
}

.catalog-item-image:hover {
  transform: scale(1.075);
}

.catalog-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: "85%";
  font-family: "Laila";
  cursor: pointer;
}

.catalog-item-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0px;
}

.catalog-item-price {
  font-size: 18px;
  font-weight: 400;
  margin: 0px;
}

.like-button-wrapper {
  position: absolute;
  top: 0px;
  right: -48px;
  background: white;
  border-radius: 50%;
  padding: 20px;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.like-button-image {
  width: 16px;
  height: 16px;
}

.item-detail-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 80%;
  height: 100%;
  position: relative;
  font-family: "Laila";
  margin: 0 auto;
}

.item-detail {
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  gap: 112px;
}

.item-detail-image-wrapper {
  height: 800px;
}

.item-detail-image {
  width: 100%;
  height: 100%;
}

.item-detail-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 36px;
  height: 90%;
  position: relative;
}

.item-detail-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item-detail-title {
  font-size: 72px;
  font-weight: 600;
  margin: 0px;
  width: 700px;
}

.item-detail-price {
  font-weight: 800;
  font-size: 36px;
  margin: 0px;
}

.item-detail-config {
  display: flex;
  flex-direction: row;
  gap: 96px;
}

.item-detail-size,
.item-detail-fabric {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-detail-selected-size,
.item-detail-selected-fabric {
  font-size: 24px;
  margin: 0px;
}

.item-detail-size-buttons,
.item-detail-fabric-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.item-detail-size-button {
  outline: none;
  border: 1px solid #b26e9d;
  background: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 64px;
  cursor: pointer;
  border-radius: 4px;
}

.item-detail-fabric-button {
  outline: none;
  border: 1px solid #ff951c;
  background: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  cursor: pointer;
  border-radius: 4px;
}

.item-detail-fabric-button:hover {
  background: #ff951c;
  transition: 0.2s;
  color: white;
  font-weight: bold;
}

.item-detail-fabric-button.selected {
  background: #ff951c;
  color: white;
  font-weight: bold;
}

.item-detail-size-button:hover {
  background: #b26e9d;
  transition: 0.2s;
  color: white;
  font-weight: bold;
}

.item-detail-size-button.selected {
  background: #b26e9d;
  color: white;
  font-weight: bold;
}

.item-detail-size-guide {
  font-size: 18px;
  text-decoration: underline;
  cursor: pointer;
  padding-top: 20px;
}

.item-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  position: absolute;
  bottom: 0px;
}

.item-add-to-cart-button {
  outline: none;
  border: none;
  background: #ff951c;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 368px;
  height: 64px;
  box-shadow: 0px 0px 20px rgba(255, 184, 0, 0.39);
  border-radius: 8px;
}

.item-add-to-cart-text {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: bold;
}

.item-add-to-cart-icon {
  width: 16px;
  height: 100%;
}

.item-like-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  outline: none;
  border: none;
  background: white;
}

.item-like-icon {
  width: 16px;
  height: 100%;
}

.item-detail-back-button {
  position: absolute;
  font-size: 24px;
  left: 0px;
  top: 0px;
  color: #666;
  cursor: pointer;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-header-logo {
  width: 200px;
  height: 200px;
}

.about-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-header-title {
  font-family: "Berkshire Swash";
  font-size: 64px;
  font-weight: lighter;
  margin: 0px;
  color: #ff951c;
}

.about-header-subtitle {
  font-family: "Laila";
  font-size: 24px;
  font-weight: 600;
  margin: 0px;
  color: #ffad4f;
}

.about-content {
  margin: 0;
  font-family: "Laila";
  font-size: 20px;
  width: 45%;
  line-height: 175%;
  color: "#333";
  font-weight: 300;
}
