* {
  text-align: center;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Roboto", "Noto", sans-serif;
  line-height: 1.5;
}
/* Navbar */
.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 16px;
}
.homepara{
  margin-top: 30px;
  font-weight: 1;
}
.navbar .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  letter-spacing: 0.3em;
  margin-top: 3px;
}

.navbar img {
  height: 16px;
  width: 18px;
  padding: 8px;
  margin-top: 6px;
  margin-left: 3px;
}

.navbar p a {
  text-decoration: none;
  color: #202020;
  font-weight: bold;
  letter-spacing: 0.3em;
}
nav {
  display: none;
  p {
    margin: 0px 7px;
  }
}

/* Cart Badge */
.cart1 {
  position: relative;
  margin-top: 6px;
}
.cart {
  height: 22px !important;
  width: 21px !important;
  margin-right: 4px;
  margin-bottom: 4px;
}
.circle {
  position: absolute;
  height: 18px;
  width: 18px;
  border-radius: 20px;
  background-color: rgb(46, 57, 100);
  color: white;
  right: 3px;
  top: 4px;
}

/* Individual Item Cards */
.item {
  max-width: 1440px;
  height: 354px;
  margin: auto;
  margin-bottom: 40px;
}

.item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  max-height: 100%;
}

.item p {
  margin: 24px 0px;
  font-size: 16.9px;
  font-weight: 500;
  color: #202020;
}

.item button {
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid #000;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  padding: 10px 44px;
  text-decoration: none;
  text-transform: uppercase;
}

/* T-Shirts Section */
.t-shirts {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: auto;
}

.t-shirts .item {
  width: 50%;
}

.t-shirts .item p {
  font-size: 14.3px;
  margin: 24px 0;
  font-weight: 500;
}

.t-shirts .item button {
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid #000;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  padding: 9px 24px;
  text-decoration: none;
  text-transform: uppercase;
}

/* Footer */
footer {
  line-height: 24px;
  font-size: 13px;
}

footer a {
  color: #757575;
  text-decoration: none;
}

footer .demo-label {
  box-sizing: border-box;
  width: 120px;
  padding: 6px;
  margin: 8px auto 0;
  background-color: #202020;
  color: white;
  text-transform: uppercase;
}

.hamburger {
  display: none;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0); 
  z-index: 98; 
}
#billing-toggle:checked ~ .overlay {
  display: block;
  @media screen and (min-width: 768px) {
    display: none;
  }
}

#billing-toggle:checked ~ .hamburger {
  position: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 256px;
  background-color: white;
  color: #757575;
  z-index: 99;
  left: 0;
  top: 0;
  @media screen and (min-width: 768px) {
    visibility: hidden;
  }
}

#billing-toggle:checked ~ .hamburger p {
  height: 10px;
  padding: 10px;
}

#billing-toggle:checked ~ .hamburger p a {
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #757575;
}

#billing-toggle:checked ~ .hamburger p:hover {
  cursor: pointer;
}

/* Heading */
.heading {
  font-size: 14.3px;
  margin: 0 0 2px 0;
  color: rgb(62, 58, 58);
}

header > span {
  color: #757575;
  font-size: 12px;
}

/* Cards Layout */
.cards-container {
  max-width: 1380px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  margin-bottom: 10px;
}

.cards-container a {
  text-decoration: none;
  cursor: pointer;
}
.mens-item {
  display: none;
  max-width: 1440px;
}
/* Individual Card */
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 38vw;
  margin: 0px 10px;
}

.card img {
  width: 100%;
  margin: 32px 0px 16px;
}

.card .title {
  color: #202020;
  font-weight: bold;
  font-size: 13px;
}

.card .price {
  color: #757575;
  font-size: 13px;
}

/*Single item page*/
/* Content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content img {
  margin: 0;
  width: 80%;
}
.main{
  height:850px;
}
.content .detail {
  box-sizing: border-box;
  margin: 32px 0;
  padding: 0 24px;
  width: 100%;
  font-size: 13px;
  text-align: left;
}

.content .detail p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
}

.content .detail .price {
  font-size: 13px;
  margin: 12px 0 32px;
  color: #757575;
}

/* Sizes */
.sizes {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
}

/* Size Selector */
.size-selector {
  position: relative;
  font-size: 13px;
}

.size-selector #sizeLabel {
  position: absolute;
  left: 0px;
  top: calc(50% - 8px);
  line-height: 16px;
  color: #757575;
}

.size-selector select {
  font-size: 16px;
  padding: 16px 24px 16px 70px;
  width: 100%;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-weight: 300;
  color: #202020;
  overflow: hidden;
  margin: 0;
  outline: none;
}

/* Quantity Selector */
.quantity-selector {
  position: relative;
  font-size: 13px;
}

.quantity-selector #quantityLabel {
  position: absolute;
  left: 0px;
  top: calc(50% - 8px);
  line-height: 16px;
  color: #757575;
}

.quantity-selector select {
  font-size: 16px;
  padding: 16px 24px 16px 70px;
  width: 100%;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-weight: 300;
  color: #202020;
  overflow: hidden;
  margin: 0;
  outline: none;
}

/* Description */
.description {
  margin: 32px 0;
  text-align: left !important;
}

.description h2 {
  margin: 16px 0;
  font-size: 13px;
}

.description p {
  color: #757575;
  font-size: 20px;
  line-height: 24px;
}

.description p.desc {
  margin-bottom: 20px;
  font-size: 13.1px;
  line-height: 1.5;
  color: #757575;
}

.description .desc ul {
  margin: 13px 0px;
  padding-left: 40px;
  color: #757575;
}
footer button {
  position: fixed;
  background-color: #172c50;
  border: none;
  color: white;
  padding: 24px;
  font-size: 15px;
  bottom: 0;
  left: 0;
  width: 100%;
}
.single-item-button {
  display: none;
}
.single-item-cart-footer {
  display: none;
}
.detail {
  max-width: 600px;
}
/*cart stylings*/

.main-frame {
  margin: 0 auto;
  padding: 0 24px 48px 24px;
  max-width: 900px;
  overflow: hidden;
  font-size: 13px;
}

.cart-header {
  text-align: center;
}
.cart-header > p {
  font-size: 1.1em;
  margin: 0 0 4px 0;
  font-weight: 500;
}
.cart-header > span {
  color: #757575;
  font-size: 12px;
}
.list {
  margin: 40px 0;
}
.list-item {
  display: flex;
  margin-bottom: 24px;
}
.list-item img {
  height: 72px;
  width: 72px;
}
.list-item-details {
  display: flex;
  margin-left: 10px;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.list-item-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;

  img {
    width: 18px;
    height: 18px;
    padding: 8px;
  }
}
.list-item-desc {
  color: #757575;
  display: flex;
  justify-content: end;
  gap: 10vw;
  flex: 1;
  gap: 32px;
  padding-right: 8px;
}
.list-item-cross {
  display: none;
}
.list-item-quantity {
  font-size: 12px;
}
.list-item-quantity select {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
  font-size: 16px;
}
.checkout-box {
  font-weight: bold;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 5px;
  margin-right: 10px;
}
.cart-item-button {
  display: none;
}
.cart-item-footer-desk {
  display: none;
}
/*checkout page*/

.checkout-frame {
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 24px 48px 24px;
  max-width: 1000px;
  overflow: hidden;
  margin-bottom: 20px;
}
.checkout-header p {
  margin: 0 0 2px 0;
  font-weight: 500;
  font-size: 0.9em;
}
.checkout-header span {
  color: #757575;
  font-size: 12px;
}

.input-group {
  position: relative;
  margin: 20px 0;
}

.input-group input {
  width: 100%;
  padding: 16px 0px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid rgb(136, 126, 126);
  border-width: 100%;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: white;
  color: #aaa;
  pointer-events: none;
  transition: 0.2s ease;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  left: 0px;
  font-size: 12px;
  color: #333;
}

.input-group select {
  width: 100%;
  padding: 12px 0px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid rgb(136, 126, 126);
  border-width: 100%;
  outline: none;
  background-color: transparent;
}
.billing-address {
  display: none;
}
.billing-add-checkbox {
  margin-top: 4px;
  height: 14px;
  width: 14px;
  border: 1px solid black;
}
.billing-add-label {
  margin-left: 12px;
  font-size: 11px;
  text-align: center;
}
#billing-add-checkbox:checked ~ .billing-address {
  display: block;
}
.state-zip {
  display: flex;
  justify-content: space-between;
  .input-group {
    width: 47%;
  }
}
.expiry {
  display: flex;
  justify-content: space-between;
}
.expiry .input-group {
  width: 30%;
}
.order-summery {
  font-size: 13px;
  margin-bottom: 20px;
  .order-item1 {
    display: flex;
    justify-content: space-between;
  }
  .order-item2 {
    display: flex;
    justify-content: space-between;
  }
}
.total {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.place-order-button {
  display: none;
}
.checkout-footer-desk {
  display: none;
}

@media screen and (min-width: 768px) {
  /* index */

  .navbar .ham label img {
    display: none;
  }
  .navbar {
    justify-content: space-between;
    align-items: center;
  }
  nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px;
  }
  nav p a {
    text-decoration: none;
    color: #202020;
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 500;
  }
  .item {
    height: 450px;
  }
  .item p {
    margin: 32px 0px;
  }
  .item img {
    height: 320px;
  }
  .t-shirts .item button {
    display: inline-block;
    box-sizing: border-box;
    border: 2px solid #000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #202020;
    padding: 12px 44px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .heading {
    font-size: 16.9px;
  }
  .mens-item {
    display: block;
    max-width: 1440px;
    margin: auto;
    width: 100vw;
    height: 320px;
    margin-bottom: 32px;
  }
  .mens-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  .card {
    width: 22vw;
    align-items: center;
  }
  .card img {
    width: 19vw;
  }
  .card .title {
    width: 80%;
  }
  /*Single item page*/

  .content {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    margin-bottom:300px ;
  }
  .content img {
    margin: 64px 32px;
  }
  .detail p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
  }

  #men {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
  }
  .content .detail .price {
    font-size: 16px;
    margin: 16px 0 40px;
    color: #757575;
  }
  .single-item-footer {
    display: none;
  }
  .single-item-button {
    display: block;
    border: 2px solid #000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #202020;
    margin: 0;
    padding: 8px 44px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: none;
    padding: 8px 44px;
    width: 24%;
  }
  .single-item-button button {
    border: none;
    width: 100%;
    background-color: transparent;
    text-align: center;
  }
  .single-item-cart-footer {
    position: absolute fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    line-height: 24px;
    font-size: 13px;
    a {
      color: #757575;
      text-decoration: none;
    }
    .demo-label {
      box-sizing: border-box;
      width: 120px;
      padding: 6px;
      margin: 8px auto 0;
      background-color: #202020;
      color: white;
      text-transform: uppercase;
    }
  }
  .content .detail {
    margin: 66px 32px;
    width: 50%;
    max-width: 400px;
    padding: 0;
  }
  .content img {
    width: 50%;
    min-width: 320px;
    min-height: 320px;
    margin-top: 64px;
    max-width: 600px;
  }
  /*cart*/

  .main-frame {
    margin-top: 66px;
  }
  .list-item-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-left: 25px;
  }
  .list-item-desc {
    max-width: 434px;
    display: flex;
    justify-content: space-around;
    gap: 70px;
  }
  .list-item-name {
    margin-top: 0px;
  }
  .list-item-name img {
    display: none;
  }
  .list-item-quantity {
    width: 9vw;
  }
  .list-item-size {
    width: 8vw;
  }
  .list-item-cross {
    display: block;
    img {
      width: 18px;
      height: 18px;
      padding: 8px;
      padding: 0px;
    }
  }
  .cart-item-footer-mob {
    display: none;
  }
  .cart-header > p {
    font-size: 16.9px;
  }
  .cart-item-button {
    display: block;
    border: 2px solid #000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #202020;
    margin: 0;
    padding: 8px 44px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: none;
    padding: 8px 44px;
  }
  .cart-item-button button {
    border: none;
    width: 100%;
    background-color: transparent;
    text-align: center;
  }
  .cart-item-footer-desk {
    display: block;
    position: absolute fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    line-height: 24px;
    font-size: 13px;
    a {
      color: #757575;
      text-decoration: none;
    }
    .demo-label {
      box-sizing: border-box;
      width: 120px;
      padding: 6px;
      margin: 8px auto 0;
      background-color: #202020;
      color: white;
      text-transform: uppercase;
    }
  }
  .list-item {
    justify-content: space-around;
  }
  .subtotal {
    margin: 0 58px 0 24px !important;
  }
  /*checkout*/

  .checkout-frame {
    margin-top: 60px;
  }
  .checkout-header {
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .checkout-information {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .account-info {
    width: 40%;
  }
  .payment-info {
    width: 115%;
  }
  .state-zip {
    .input-group {
      width: 47%;
    }
  }
  .checkheader{
    font-size: 16.9px;
  }
  .checkout-footer-mob {
    display: none;
  }
  .place-order-button {
    display: block;
    border: 2px solid #000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #202020;
    margin: 0;
    padding: 8px 44px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    outline: none;
    width: 30%;
  }
  .place-order-button button {
    border: none;
    width: 100%;
    background-color: transparent;
    text-align: center;
  }
  .navbar .logo{
    margin-top:7px;
  }

  .checkout-footer-desk {

    display: block;
    line-height: 24px;
    font-size: 13px;
    a {
      color: #757575;
      text-decoration: none;
    }
    .demo-label {
      box-sizing: border-box;
      width: 120px;
      padding: 6px;
      margin: 8px auto 0;
      background-color: #202020;
      color: white;
      text-transform: uppercase;
    }
  }
  .total {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .card {
    width: 22vw;
    img {
      width: 100%;
    }
  }
}
@media screen and (min-width: 1440px) {
  .card {
    width: 20vw;
    margin: 0px 30px;
  }
  .card img {
    width: 300px;
    margin-bottom: 85px;
  }
}
@media screen and (min-width: 1920px) {
  .cards-container {
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
  }
  .card {
    width: 24vw;
    margin: 0px;
  }
}
