@charset "UTF-8";
/********************************************/
/********************************************/
/* Please ❤ this if you like it! */
/* Follow Me https://codepen.io/designfenix */
/********************************************/
/********************************************/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700");
body {
  font-family: "Roboto Serif", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 100vh;
  background-color: #f6f1ea;
  background-image: radial-gradient(circle at 15% 20%, rgba(232, 186, 142, 0.35) 0%, rgba(232, 186, 142, 0.18) 20%, rgba(232, 186, 142, 0.08) 35%, transparent 60%), radial-gradient(circle at 85% 75%, rgba(220, 160, 110, 0.35) 0%, rgba(220, 160, 110, 0.15) 25%, transparent 55%), radial-gradient(circle at 60% 10%, rgba(255, 210, 170, 0.25) 0%, transparent 50%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: saturation;
  background: radial-gradient(circle at 20% 25%, rgba(255, 200, 150, 0.35), rgba(255, 200, 150, 0.15) 30%, transparent 60%), radial-gradient(circle at 80% 70%, rgba(255, 170, 110, 0.3), transparent 60%);
  filter: blur(80px);
}

.product-card {
  border-radius: 12rem;
  corner-shape: squircle;
  padding: 1rem 1.5rem 1rem 1rem;
  max-width: 800px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 40px 80px rgba(206, 168, 132, 0.1), 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 120px rgba(198, 169, 126, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6), -5px -5px 10px 0 #fffce9;
}
@media (max-width: 768px) {
  .product-card {
    border-radius: 5rem;
  }
}
.product-card .card-content {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .product-card .card-content {
    flex-direction: column;
  }
}
.product-card .image-container {
  position: relative;
  border-radius: 12rem;
  width: 45vw;
  max-width: 450px;
  corner-shape: squircle;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-card .image-container {
    width: 100%;
    border-radius: 5rem;
  }
}
.product-card .info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #5f5a55;
}
.product-card .info-container .brand {
  display: block;
  padding-bottom: 3rem;
  font-size: 0.85rem;
}
.product-card .info-container h1 {
  line-height: 100%;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.1rem;
  margin: 0;
  padding: 0;
  transform: scaleY(2);
}
.product-card .info-container .price {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  padding: 2.5rem 0 0;
  color: #c89b5e;
}
.product-card .info-container .description {
  max-width: 280px;
  font-size: 0.85rem;
  font-weight: 200;
  line-height: 150%;
  margin: 0;
  padding: 1rem 0;
}
.product-card .info-container .btn-primary {
  margin-top: 1rem;
  padding: 1rem 2rem;
  max-width: 200px;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(145deg, #d8a45c, #b97a2f);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(201, 155, 94, 0.35), 0 0 25px rgba(201, 155, 94, 0.15), inset 0 2px 6px rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .product-card .info-container .btn-primary {
    max-width: none;
  }
}
.product-card .info-container .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 25px rgba(185, 122, 47, 0.45), inset 0 2px 6px rgba(255, 255, 255, 0.3);
}
.product-card .info-container .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(185, 122, 47, 0.3), inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

.image {
  aspect-ratio: 1/1;
  width: 100%;
  background: url("https://assets.codepen.io/662051/Gemini_Generated_Image_j4wi73j4wi73j4wi.png") center;
  background-size: cover;
  transition: 0.4s ease;
}

.theme-switch__input:checked ~ .image {
  background-image: url("https://assets.codepen.io/662051/Gemini_Generated_Image_2q32sc2q32sc2q32.png");
}

.theme-switch {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  cursor: pointer;
}
.theme-switch__input {
  display: none;
}
.theme-switch__container {
  position: relative;
  width: 60px;
  height: 32px;
  padding: 5px;
  background-color: #e2e2e2;
  border-radius: 32px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.theme-switch__circle {
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.theme-switch__icons {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
}
.theme-switch .icon {
  width: 18px;
  height: 18px;
  transition: opacity 0.3s ease;
}
.theme-switch .icon--sun {
  opacity: 1;
  color: #fff;
  transform: translate(6px, 2px);
}
.theme-switch .icon--moon {
  opacity: 0;
  color: #333;
  transform: translate(15px, 2px);
}
.theme-switch__input:checked + .image + .theme-switch .theme-switch__container {
  background-color: #222;
}
.theme-switch__input:checked + .image + .theme-switch .theme-switch__circle {
  transform: translateX(30px);
  background-color: #fff;
}
.theme-switch__input:checked + .image + .theme-switch .icon--sun {
  opacity: 0;
}
.theme-switch__input:checked + .image + .theme-switch .icon--moon {
  opacity: 1;
  color: #333;
}

#dev {
  font-family: "Montserrat", sans-serif;
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 1em;
  font-size: 14px;
  color: #333;
  background-color: white;
  border-radius: 25px;
  cursor: pointer;
}
#dev a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: all 0.4s ease;
}
#dev a:hover {
  color: #ef5350;
  text-decoration: underline;
}
#dev span {
  display: inline-block;
  color: pink;
  transition: all 0.4s ease;
}
#dev span:hover {
  transform: scale(1.2);
}