
/* The switch - the box around the slider */
.switch {
    font-size: 13px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #c7c6c6;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .slider:before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2em;
    width: 2em;
    inset: 0;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .switch input:checked + .slider {
    background: #969696;
  }
  
  .switch input:focus + .slider {
    box-shadow: 0 0 1px #c7c6c6;
  }
  
  .switch input:checked + .slider:before {
    transform: translateX(1.6em);
  }

.footer{
    margin-bottom: 50px;
    margin-top: 50px;
}

.footer i{
    font-size: 24px;
    color: #969696;
}

.socials{
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials a {
  text-decoration: none;
}

.socials .facebook{
  color: #1877F2;
}
.socials .twitter{
  color: #1DA1F2;
}
.socials .instagram{
  color: #E4405F;
}
.socials .youtube{
  color: #FF0000;
}

.socials .pinterest{
  color: #E60023;
}



.dark-mode{
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-img{
    width: 100%;
}
.footer{
  display: flex;
  justify-content: space-between;
}

  .copyright {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
  }


  @supports (-webkit-touch-callout: none) {

    /* CSS rules specifically for iOS browsers */
    input {
        font-size: 16px;
    }
}