@font-face{
  font-family: Now-Medium;
  src: url(../font/Now-Medium.otf);
}

@font-face{
  font-family: Now-Black;
  src: url(../font/Now-Black.otf);
}

@font-face{
  font-family: Now-Light;
  src: url(../font/Now-Light.otf);
}

@font-face{
  font-family: Delizioso;
  src: url(../font/Delizioso.ttf);
}

html{
  font-family: Now-Light !important;
  scroll-behavior: smooth;
}

:root {
--main-bg: #cdcdcd;
--hotpink: #fe7cba;
--pink: #ffd2e6;
--blue: #39b3fe;
--green: #2bedba;
--yellow: #ffdb00;
--black: #171a1e;
}

a{
  cursor: pointer;
}

a:hover{
  color: var(--hotpink) !important;

}

h1{
  font-family: Delizioso;
  font-size: 6.5em !important;
  color: var(--hotpink);
}

header{
  background-color: var(--pink);
  position: sticky;
  top: 0;
  z-index: 909909;
}

button{
  line-height: normal !important;
  padding: 12px 20px 8px 20px !important;
}

.main{
  /* text-shadow: -4px -2px 6px #fdc7df; */
  margin-top: -45px;
}

.area{
  font-size: 4.25em !important;
  padding-top: 54px;
}

h2{
  font-family: Now-Medium;
  color: #39b3fe;
}

body{
  margin: 0px;
  background: whitesmoke;
}

#canvas{
  width:100vw;
  height: 40vh;
  cursor: grab;
  background: white;
/*   background: gray; */
}

#canvas:active{
 cursor: grab; 
}

#cone{
  position: relative;
  width: 455px;
  height: 455px;
  margin: -460px 0 -100px auto;
  cursor: grab;
  background: transparent;
}

#snake{
  position: relative;
  width: 555px;
  height: 555px;
  margin: -340px 100px -240px auto;
  cursor: grab;
  background: transparent;
}

#cluster {
  position: relative;
  width: 885px;
  height: 655px;
  margin: -410px 100px -300px auto;
  cursor: grab;
  background: transparent;
}

#lightning {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  cursor: grab;
  background: transparent;
  z-index: -1;
}

#cube{
  position: absolute;
  width: 655px;
  height: 645px;
  right:0px;
  top: 1875px;
  cursor: grab;
  background: transparent;
  z-index: -2;
}

.object-cover .object-center{
  box-shadow: 0px 3px 3px rgba(30, 40, 53, 0.1), 0px 2px 2px rgba(6, 43, 92, 0.2), 0 2px 6px rgba(25, 101, 152, 0.4)!important;
}

.contact{
  background-color: white;
}

.py-24{
  padding-top: 4em !important;
  padding-bottom: 6em !important;
}

footer{
  background-color: var(--pink);
}

.baseline{
  background-color: var(--hotpink) !important;
}

.txt-center{
  text-align: center;
}

/* Modal */
 .modal-overlay {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
    }

    #close-modal,
    #close-cart {
      font-family: 'Now-Medium', sans-serif;
    }

    .memphis-pattern {
      width: 100%;
      height: 300px;
      background: white;
      border: 2px solid var(--black);
    }

    .cart-badge {
      background: var(--hotpink);
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -8px;
      right: -8px;
    }

    .size-option {
      border: 2px solid var(--black);
      transition: all 0.3s ease;
    }

    .size-option:hover,
    .size-option.selected {
      background: var(--hotpink);
      color: white;
    }

    .quantity-btn {
      background: var(--blue);
      color: white;
      border: none;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .quantity-btn:hover {
      background: var(--hotpink);
    }

    .cart-item {
      border-bottom: 1px solid #e5e5e5;
      padding: 1rem 0;
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background: var(--hotpink);
    }

    .btn-secondary {
      background: var(--yellow);
      color: var(--black);
      padding: 12px 24px;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: var(--green);
    }