@import url('https://fonts.cdnfonts.com/css/kartoone');
@import url('https://fonts.cdnfonts.com/css/natural-toons');
@import url('https://fonts.cdnfonts.com/css/chlorinap');
@import url('https://fonts.cdnfonts.com/css/brutality');
.schoolbell-regular {
    font-family: 'Schoolbell', cursive;
    font-weight:400;
    font-style:normal;
  }
  
          img:hover {
      transform: scale(1.1); /* Slight zoom effect */
      transition: 0.3s;
  }
  html {
      scroll-behavior: smooth;
  }
  .text-box {
      border: 2px solid #ffffff;
      border-radius: 8px;
      padding: 20px;
      width: 50px;
      background-color: #ffffff;
      text-align: center;
      margin: 20px auto;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .image-row {
              display: flex;
              gap: 10px; /* Removes space between images */
              text-align: center;
              vertical-align: middle;
              align-items: center;
              justify-content: center;
          }
          .image-rowhome {
            display: flex;
            gap: 5px; /* Removes space between images */
            text-align: center;
            vertical-align: middle;
            align-items: center;
            justify-content: center;
        }
        .picshome {
        font-family: "Jua", serif;
        display: flex; 
        align-items: center; /* Align images on the same vertical line */
        gap: 2px; /* Adds space between images */
        justify-content: center;
}
        .picshome img {
        width: 100%;
        height: auto;
  }
  
          @media screen and (max-width: 800px) {
          .pics img {
          max-width: 100%;
    }
  }
          .counter-label {
              font-size: 36px;
              font-weight: bold;
              font-family: "Schoolbell", serif;
          }
          .counter-number {
              font-size: 32px;
              background-color: rgba(0, 0, 0, 0);
              font-weight: bold;
              color: #ffffff;
              font-family: "Schoolbell", serif; 
              border: 5px solid #ff0000;
              border-radius: 50%;
              padding: 10px 20px;
              margin: 5px;
          }
          /* Wrapper for the star to handle the box-shadow outline */
          .star-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 20px;
  }
  
  /* Star with clip-path for the shape */
  .star {
      position: relative;
      width: 120px;  /* Width of the star */
      height: 100px; /* Height of the star */
      background-color: transparent;
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); /* Star shape */
      background-color: #ff0000; /* Fill color for the star (optional) */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
  }
  .cartTab {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%); /* hidden */
    width: 400px;
    height: 100%;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    color: #eee;
    background-color: #000000;
    font-family: "Schoolbell", serif;
    font-size: x-large;
    z-index: 1000; /* high enough */
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1); /* optional */
    max-width: 100vw; /* don’t go wider than the viewport */
    box-sizing: border-box; /* include padding/border in width */
}
.cartTab.active {
    transform: translateX(0); /* visible */
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}  
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.cart-icon {
    width: 40px;
    height: 40px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}
body.showCart .cartTab{
    right: 0;
}
body.showCart .container{
    transform: translateX(-250px);
}
.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab button{
    font-family: "Schoolbell", serif;
    background-color: #e80e0e;
    color: #000000;
    border: none;
    font-size: x-large;
    font-weight: 500;
    cursor: pointer;
}
.cartTab .close{
    font-family: "Schoolbell", serif;
    background-color: #eee;
    color: #000000;
}
.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    color: #555;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
    cursor: auto;
}
.listCart .item:nth-child(even){
    background-color: rgba(0, 0, 0, 0.067);
}
.listCart{
    overflow: auto;
}
.listCart::-webkit-scrollbar{
    width: 0;
}
  /* Styling for the number inside the star */
  .number {
      font-size: 30px; /* Size of the number */
      color: #ffffff; /* Color of the number */
      font-weight: bold; /* Make the number bold */
      text-align: center;
      z-index: 3;
  }
          .counter {
              display: flex;
      flex-direction: row; 
      align-items: center;
    justify-content:center;
    gap: 90px;
    color: #ffffff;
    font-size: 24px;
  }
  .quantity {
    display: flex;
    align-items: center;
    justify-content:center;
      background-color: rgba(0, 0, 0, 0);
      color: #000000;
      text-align: center;
  }
  .quantity button {
      display: flex;
    align-items: center;
    justify-content:center;
    border: 3px solid #ffffff;
      background-color: rgba(0, 0, 0, 0);
      color: #ffffff;
  }
  .quantity input {
    display: flex;
    align-items: center;
    justify-content:center;
    border: 3px solid #ffffff;
      background-color: rgba(0, 0, 0, 0);
      color: #ffffff;
  }
  .add-to-cart {
      font-family: "Schoolbell", serif;
          position: relative;
          background-color: rgba(0, 0, 0, 0);
          color: #000000;
          padding: 6px 12px;
          font-size: 16px;
          border: 3px solid #ff0000;
          border-radius: 5px;
          cursor: pointer;
      }
      .add-to-cart:hover {
          background-color: #ff0000;
          color: #000000;
          transform: scale(1.1);
      }
      .size-select {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            position: relative;
            background-color: rgba(0, 0, 0, 0);
            color: #000000;
            padding: 6px 12px;
            font-size: 20px;
            border: 3px solid #ff0000;
            border-radius: 5px;
            cursor: pointer;
        }
          .size-buttons button {
              border: 3px solid #ff0000;
              background-color: rgba(0, 0, 0, 0);
              color: #000000;
              border-radius: 50%;
              padding: 10px 20px;
              margin: 2px;
              font-size: 13px;
              font-weight: bold;
              font-family: "Schoolbell", serif;
              cursor: pointer;
              transition: all 0.3s ease;
          }
  
          .size-buttons button:hover {
              background-color: #ff0000;
              color: rgb(0, 0, 0);
          }
  
          .size-buttons button.selected {
              background-color: #ff0000;
              color: rgb(0, 0, 0);
              border-color: #ff0000;
          }
          
      body { background: url(/pics/drop2sky.jpg); 
             background-size: cover; /* Adjust to your preference (cover, contain, etc.) */
             background-repeat: no-repeat; /*  Usually preferred for solid images */
      }
    .footer{
      color:#000000;
      font-size: 25px;
      font-weight: bold;
    }
    .headletter{
      color:#ffffff;
      font-size: 40px;
      font-weight: bold;
      font-family: "Schoolbell", serif;
    }
    .redletter{
        font-family: "Schoolbell", serif;
    font-weight: 900;
    font-style: normal;
      color:#000000;
      font-size: 30px;
    }
  
  /* Button styling for Size Guide */
  .size-guide-btn {
      position: relative;
    align-items: center;
    justify-content:center;
    font-family: "Schoolbell", serif;
          background-color: rgba(0, 0, 0, 0);
          color: #000000;
          padding: 6px 12px;
          font-size: 16px;
          border: 3px solid #ff0000;
          border-radius: 5px;
          cursor: pointer;
      text-align: center;
  }
  
  .size-guide-btn:hover {
      background-color: #ff0000;
      color: rgb(0, 0, 0);
  }
  
  /* Initially hide the size guide content */
  .size-guide-content {
      display: none;
      padding-top: 10px;
  }
  
  .size-guide-content h3 {
      color: #ff0000;
  }
  
  .size-guide-content p {
      color: #000000;
  }
  .size-guide-content p3 {
      color: #ff0000;
      font-size: 20px;
  }
  table {
      margin-left: auto;
      margin-right: auto;
      width: 15%;
      border-collapse: collapse;
      margin-top: 20px;
      align-items: center;
    justify-content:center;
    text-align: center;
    font-size: 15px;
  }
  
  table th, table td {
      padding: 8px;
      text-align: center;
      border: 3px solid #000000;
      align-items: center;
    justify-content:center;
  }
  
  table th {
      background-color: rgb(0, 0, 0);
      align-items: center;
    justify-content:center;
    color: #ff0000;
    font-family: "Schoolbell", serif;
  }
  .container{
      width: 900px;
      margin: auto;
      max-width: 90vw;
      text-align: left;
      padding-top: 10px;
      transition: transform .5s;
  }
  svg{
      width: 30px;
  }
  .icon-cart{
      position: relative;
  }
  .icon-cart span{
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    background-color: red;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
  }
  #carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  #carousel-controls button {
    background: none;
    border: none;
    font-size: 50px;
    font-family: "Schoolbell", serif;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0 20px; /* ← adds 20px space left and right */
  }

  #carousel-controls button:hover {
    color: #ff3c3c; /* or your brand red */
  }
  @media only screen and (max-width: 992px) {
      .listProduct{
          grid-template-columns: repeat(3, 1fr);
      }
  }
  
  
  /* mobile */
  @media only screen and (max-width: 768px) {
      .listProduct{
          grid-template-columns: repeat(2, 1fr);
      }
  }
  @media only screen and (max-width: 500px) {
    .counter {
      flex-direction: column;
      gap: 30px;
    }
  }
  