@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: var(--background-color);
    font-family: "nunito";
}


.snow-container,
.candy-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 200;
}

.snow-container img,
.candy-container img {
    position: absolute;
    top: -100px;
    opacity: 0.6;
    will-change: transform;
    animation: fall linear infinite;
}



@keyframes fall {
    from {
        transform: translateY(-100px) rotate(0deg);
    }

    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

.snow-little {
    width: 2vh;
}


.snow-medium {
    width: 4vh;
}

.snow-big {
    width: 5vh;
}

@keyframes snow-fall-rotate {
    0% {
        transform: translate3d(0, -50px, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(30px, 60vh, 0) rotate(180deg);
    }

    100% {
        transform: translate3d(60px, 120vh, 0) rotate(360deg);
    }
}



a {
    color: var(--white);
    text-decoration: none;
}

.header {
    width: 100%;
}

.header .container {
    width: 98%;
    margin: auto;
    margin-top: 2vh;
}

.header .container .wrapper {
    display: flex;
    justify-content: space-between;
}

.header .container .item {
    display: block;
    display: flex;
    align-items: center;
    gap: 1.6vh;
    cursor: pointer;
}

.header .container .item .icon-box {
    width: 10vh;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    font-size: 4vh;
    position: relative;
    color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.header .container .item .text {
    font-size: var(--h2);
    font-weight: 800;
    color: var(--white);

}

.header .container .item .online {
    font-size: var(--h5);
    font-weight: 500;
    color: var(--white);

}

.header .container .item .icon-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.header .container .item:hover .icon-box {
    transform: scale(1.04);
}

.header .container .item:hover .icon-box::after {
    left: 150%;
}

.header .item .content {
    position: relative;
}

.header .item .text,
.header .item .online {
    transition: all 0.3s ease;
}

.header .item:hover .text {
    transform: translateY(1.4vh);
}

.header .item:hover .online {
    transform: translateY(1vh);
    opacity: 0;
}

.header .item.discord .text,
.header .item.discord .online {
    text-align: right;
}

.header .item.discord .icon-box {
    background-color: #7289DA !important;
}

.header .logo {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12vh;
}



/* Animasyon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.header .logo img:hover {
    transform: scale(0.95);
}



.layout-container {
    width: 100%;
    height: 100%;
    margin-top: 16vh;
    margin-bottom: 4vh;
}

.layout-container .layout {
    width: 46%;
    margin: auto;
}

.menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu .column {
    display: flex;
    align-items: center;
    gap: 1vh;
}


.menu .item.login {
    color: var(--color-primary);
    background:var(--color-primary12);
        border:none;

}

.menu .item.login:hover {
    background:var(--color-primary30);
    border:none;
}

.menu .item {
    background-color: var(--white10);
    color: var(--white);
    padding: 1.2vh 4vh;
    font-weight: 600;
    font-size: var(--h4);
    transition: 0.3s ease all;
    border: 0.1vh solid #ffffff00;
    border-radius: var(--border-radius);
}

.menu .basket-icon {
        background-color: var(--color-primary);
    color: var(--white);
    width: 6vh;
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--h4);
    transition: 0.3s ease all;
    border: 0.1vh solid #ffffff00;
    border-radius: var(--border-radius);
}

.menu .basket-icon:hover {
    opacity: 0.5;
}

.menu a.store {
    font-size: var(--h4);
    padding: 1.8vh 6vh;
    font-weight: 700;
}

.menu .item:hover {
    background-color: var(--white10);
    border: 0.1vh solid #fff;
}

.menu a.active {
    border: 0.1vh solid #ffffff90;
}

section {
    margin-top: 4vh;
    width: 100%;
}

.banner {
    position: relative;
    height: 20vh;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 0.1vh solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 6vh;
    box-sizing: border-box;
}

.banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    object-fit: cover;
    opacity: 0.2;
}

.banner p {
    color: var(--white);
    font-size: var(--h2);
    font-weight: 700;
}

.banner::before {
    position: absolute;
    content: "";
    width: 40vh;
    height: 40vh;
    background-color: var(--color-primary);
    right: -28vh;
    bottom: -20vh;
    transform: rotate(-60deg);
}

h1.title {
    color: var(--white);
    font-size: var(--h3);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2vh;
}

h1.title .icon {
    width: 6vh;
    min-width: 6vh;
    height: 6vh;
    background-color: var(--color-primary30);
    color: var(--color-primary);
    font-size: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}



.footer {
    width: 100%;
    box-sizing: border-box;
    padding: 4vh;
    background-color: var(--footer-color);
    margin-top: 4vh;
    border-radius: var(--border-radius);
}

.footer .logo {
    width: 12vh !important;
}


.footer .wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
 
}

.footer .wrapper .left {
    display: flex;
    gap: 2vh;
}

.footer .wrapper .left a {
    font-size: var(--h5);
    transition: 0.3s ease all;
}

.footer .wrapper .left a:hover {
    text-decoration: underline;
}

.footer .wrapper .right {
    color: var(--text-color);
    font-size: var(--h6);
}

.footer .wrapper .right a {
    text-decoration: underline;
}


.category .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2vh;
    margin-top: 2vh;
}

.category .wrapper .item {
    width: 100%;
    padding: 1.4vh;
    background-color: var(--color-primary30);
    border: 0.1vh solid var(--color-primary50);
    transition: 0.3s ease all;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.category .wrapper .item:hover img {
    opacity: 1;
}

.category .wrapper .item img {
    width: 100%;
    border-radius: var(--border-radius);
    opacity: 0.2;
    transition: 0.3s ease all;
    max-height: 16vh;
    min-height: 14vh;
    object-fit: cover;
}

.category .wrapper .item .text {
    position: absolute;
    font-size: var(--h4);
    font-weight: 600;
    transition: 0.3s ease all;
    color: var(--white);

}

.category .wrapper .item:hover .text {
    opacity: 0;
}


.products-wrapper {
    margin-top: 2vh;
}


.products-wrapper .item {
    position: relative;
    width: 100%;
    background-color: var(--color-primary12);
    border: 0.1vh solid var(--color-primary50);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vh;
    box-sizing: border-box;
    transition: 0.3s ease all;
    margin-bottom: 2vh;
}

.products-wrapper .item:last-child {
    margin-bottom: 0vh;
}

.products-wrapper .item .left {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 2vh;
}

.products-wrapper .item .image {
    width: 10vh;
    height: 10vh;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.products-wrapper .item:hover {
      background-color: var(--color-primary30);
    border: 0.1vh solid var(--color-primary80);
}

.products-wrapper .item .name {
    color: var(--white);
    font-size: var(--size-4);
    font-weight: 500;
}

.products-wrapper .item .price {
    color: var(--color-text);
    font-size: var(--size-5);
    font-weight: 400;
}

.products-wrapper .item .price .discount {
    text-decoration: line-through;
    font-size: var(--size-6);
        color: var(--color-primary);

}

.products-wrapper .item .btns {
    display: flex;
    align-items: center;
    gap: 2vh;
}



 .add-to-cart {
    position:relative;
    color: var(--white) !important;
    font-size: var(--h5);
    font-weight: 500;
    padding: 1.2vh 3vh;
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    display:flex;
    align-items:center;
    justify-content:center;
}



/* Işık efekti */
 .add-to-cart::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-25deg);
}

/* Hover olunca ışık geçsin */
.add-to-cart:hover::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}



.products-wrapper .item .info {
    position: relative;
    color: var(--white);
    background-color: var(--white20);
    font-weight: 600;
    border-radius: var(--border-radius);
    font-size: var(--size-4);
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s ease all;
    display: block;
    border: 0.1vh solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7vh;
    height: 7vh;
}

.products-wrapper .item .info:hover {
    background-color: var(--color-primary);
}



.toast-original {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--footer-color);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    min-width: 320px;
    box-shadow: 0 10px 30px #00000020;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9;
}

.toast-original.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-original .toast-icon {
    width: 36px;
    height: 36px;
    background: #22c55e;
    color: #052e16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.toast-original .toast-content {
    flex: 1;
}

.toast-original .toast-title {
    color: #22c55e;
    font-weight: 600;
    font-size: var(--h6);
}

.toast-original .toast-message {
    font-size: var(--h5);
    opacity: 0.9;
}

.toast-original .toast-close {
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
}

.toast-original .toast-close:hover {
    opacity: 1;
}



@media screen and (max-width: 1300px) {
    .layout-container .layout {
        width: 60%;
    }
}



@media screen and (max-width: 1000px) {
    .layout-container .layout {
        width: 70%;
    }
}


@media screen and (max-width: 800px) {
    .layout-container .layout {
        width: 80%;
    }

    .menu a {
        padding: 1vh 3vh;
        font-size: var(--h5);
    }

    .menu a.store {
        font-size: var(--h5);
        padding: 1.4vh 4vh;
    }
}


@media screen and (max-width: 600px) {
    
        .basket {
    position: fixed;
    left: 0vh;
    top: 0vh;
    height: 100vh;
    width: 100%;
    z-index: 4;
    transition: 0.5s ease all;
    border-radius: 0;
    background: var(--footer-color);
}

    .about {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2vh;
    }

    .header .container {
        width: 96%;
        margin-top: 1vh;
    }

    .layout-container .layout {
        width: 90%;
    }

    .menu {
        justify-content: center;
        gap: 1vh;
        flex-wrap: wrap;
    }

    .menu a {
        padding: 1vh 3vh;
        font-size: var(--h5);
    }

    .menu a.store {
        padding: 1vh 3vh;
        font-size: var(--h5);
    }

    .header .logo img {
        width: 24vh;
    }


    .header .container .item .icon-box {
        width: 7vh;
        height: 7vh;
        font-size: 2.6vh;
    }

    .header .container .item .text {
        font-size: var(--h3);
        font-weight: 800;
    }

    .header .container .item .online {
        font-size: var(--h6);
    }

    .banner {
        height: 16vh;
        padding: 0 4vh;
    }

    .banner::before {
        right: -32vh;
    }

    .footer .wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1vh;
    }


    .category .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .products .item {
        flex-direction: column;
         align-items: flex-start;
         gap:2vh;
    }

.products .item p {
    width: 50%;
}

}









.community-goal .title {
    color: var(--white);
    font-size: var(--h3);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2vh;
}

.community-goal .title .icon {
    width: 6vh;
    min-width: 6vh;
    height: 6vh;
    background-color: var(--color-primary30);
    color: var(--color-primary);
    font-size: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.community-goal .wrapper {
    margin-top: 2vh;
    display: flex;
    flex-wrap: wrap;
    gap: 2vh;
}

.community-goal .wrapper .item {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 3.6vh;
    border-radius: var(--border-radius);
    border: 0.1vh solid var(--color-primary50);
    background-color: var(--color-primary12);
    color: var(--white);
    transition: 0.3s ease all;
}

.community-goal .wrapper .item:hover {
    border: 0.1vh solid var(--color-primary);
    background-color: var(--color-primary30);
}


.community-goal .wrapper .item .progress {
    position: relative;
    width: 100%;
    height: 4vh;
    background-color: var(--white10);
    margin-top:2vh ;
    border-radius: var(--border-radius);
    overflow: hidden;

}

.community-goal .wrapper .item .progress .bar {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height:  100%;
    border-radius: var(--border-radius);
    background-color: var(--color-primary);
}

.community-goal .wrapper .item .percents {
    display: flex;
    justify-content: space-between;
    margin-top: 1vh;
}

.community-goal .wrapper .item .percents .left {
    color: var(--color-primary);
    font-weight: 700;
}


.community-goal .wrapper .item .percents .right {
    color: var(--text-color);
    font-weight: 600;
}

.community-goal .wrapper .item .percents .right span {
    color: var(--white);
}

.community-goal .text {
    margin-top:1vh;
        color: var(--text-color);
    font-size: var(--h5);

}








.modules .title {
    color: var(--white);
    font-size: var(--h3);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2vh;
}

.modules .title .icon {
    width: 6vh;
    min-width: 6vh;
    height: 6vh;
    background-color: var(--color-primary30);
    color: var(--color-primary);
    font-size: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.modules .wrapper {
    margin-top: 2vh;
    display: flex;
    flex-wrap: wrap;
    gap: 2vh;
}

.modules .wrapper .item {
    flex-basis: 40vh;
    flex-grow: 1;
    position: relative;
    box-sizing: border-box;
    padding: 3.6vh;
    border-radius: var(--border-radius);
    border: 0.1vh solid var(--color-primary50);
    background-color: var(--color-primary06);
    color: var(--white);
    transition: 0.3s ease all;
}

.modules .wrapper .item:hover {
    border: 0.1vh solid var(--color-primary);
    background-color: var(--color-primary30);
}
.modules  .payments-wrapper {
    margin-top: 2vh;
    display: flex;
    gap: 3vh;
    flex-wrap: wrap;
}

.modules  .payment-item {
    width: max-content;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:1vh;
}

.modules  .payment-item img {
    width: 7vh;
    border-radius: var(--border-radius);
}

.modules  .payment-item p {
    text-align: center;
    color: var(--text-color);
    font-size: var(--h6);
}


.modules .giftcard-input {
    width: 100%;
    box-sizing: border-box;
    padding: 2vh 2vh;
    margin-top: 2vh;
    border-radius: var(--border-radius);
    border: none;
    background-color: var(--white10);
    color: var(--text-color);
    font-size: var(--h5);
    font-weight: 500;
    outline: none;
}

.modules .giftcard-btn {
    width: 100%;
    margin-top: 2vh;
    background-color: var(--color-primary);
    padding: 1.2vh ;
    display: block;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--h4);
    transition: 0.3s ease all;
}

.modules .giftcard-btn:hover {
    opacity: 0.5;
}

.modules .giftcard p {
    margin-top:1vh;
}


.modules .text-content {
    margin-top:1vh;
}







.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-popup-container {
  background: var(--footer-color);
  padding: 4vh;
  width: 60vh;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.35s ease;
}

.overlay.active .login-popup-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.login-popup-container .login-title {
    color: var(--white);
    text-align: center;
    font-size: var(--h2) ;
}

.login-popup-container input {
  width: 100%;
  padding: 12px;
  margin: 16px 0;
  box-sizing: border-box;
  border: none;
  background-color: var(--white10);
  border-radius: var(--border-radius);
  outline: none;
  color: var(--white);
}

/* Yes / No */
.login-popup-container .choice-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  
}

.login-popup-container .choice-btn {
  flex: 1;
  padding: 8px;
  cursor: pointer;
  background: var(--white10);
  color: var(--white);
    border-radius: var(--border-radius);

}

.login-popup-container .choice-btn.active {
  background: var(--color-primary12);
  color: var(--color-primary);
}

/* Butonlar */
.login-popup-container .login-btn {
    box-sizing: border-box;
    display: flex;
    align-items:center;
    justify-content:center;
  width: 100%;
  padding: 10px;
  background: var(--color-primary);
  font-weight: 700;
  color: var(--white);
  border: none;
  cursor: pointer;
    border-radius: var(--border-radius);
    transition: 0.3s ease all;

}

.login-popup-container .login-btn:hover {
    opacity: 0.5;
}








.basket {
    position: fixed;
    right: 5vh;
    height: 90vh;
    width: 60vh;
    z-index: 4;
    opacity: 1;
    transition: 0.5s ease all;
    border-radius: var(--border-radius);
    background: var(--footer-color);
         max-width: 60vh;

}

.basket.open {
    filter: blur(0);
    pointer-events: auto;
    opacity: 1;
}

.basket .container {
    width: 80%;
    height: 100%;
    margin: auto;
    margin-top: 4vh;
}

.basket .container .up {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket .container .up .name {
    color: var(--white);
    font-size: 2.4vh;
    font-weight: 500;
}

.basket .container .up .close {
    width: 4vh;
    height: 4vh;
    background-color: #DA4D4D20;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1vh;
    color: #DA4D4D;
    cursor: pointer;
    transition: 0.3s ease all;
    font-size: 2vh;
}

.basket .container .up .close:hover {
    background-color: #DA4D4D50;
}

.basket .container .wrapper {
    margin-top: 4vh;
    height: 60vh;
    overflow-y: scroll;
    overflow-x: hidden;
        scrollbar-width: none;

}



.basket .container .wrapper .item {
    position: relative;
    width: 100%;
    padding: 2vh;
    background-color: var(--white10);
    display: flex;
    gap: 2vh;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    transition: 0.3s ease all;
    margin-top: 2vh;
}

.basket .container .wrapper .item:nth-child(1) {
    margin-top: 0;
}

.basket .container .wrapper .item:hover {
    background-color: var(--white20);

}

.basket .container .wrapper .item img {
    border-radius: var(--border-radius);
    width: 8vh;
    height: 8vh;
        object-fit: cover;

}

.basket .container .wrapper .item .title {
    color: var(--white);
    font-size: var(--h4);
    font-weight: 600;
}


.basket .container .wrapper .item .price {
    color: var(--color-primary);
    width: max-content;
    font-size: var(--h5);
}


.basket .container .wrapper .item .remove {
    position: absolute;
    right: 1vh;
    bottom: 1vh;
    padding: 1vh 2vh;
    background-color: #DA4D4D10;
    color: #DA4D4D;
    font-size: 1.6vh;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease all;
}

.basket .container .wrapper .item .remove:hover {
    background-color: #DA4D4D30;

}

.basket .container .total-text {
    color: var(--text-color);
    font-size: var(--h5);
    font-weight: 600;
    margin: 3vh 0;
}

.basket .container .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket .container .bottom .total-price {
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: var(--h5);
    padding: 1vh 2vh;
    font-weight: 500;
    border: 0.2vh solid var(--white20);
}

.basket  .purchase {
    padding: 1vh 4vh;
    background: var(--color-primary);
    font-size: var(--h3);
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: 0.3s ease all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    width:100%;
box-sizing:border-box;
}

.basket  .purchase:hover {
    opacity: 0.5;
}






.product-details {
    width: 110vh;
    height: max-content;
    background-color: var(--color-box);
    border: 0.1vh solid var(--white20);
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3vh;
    z-index: 3;
    gap: 3vh;
    box-sizing:border-box;
}

.product-details .left {
    position:relative;
    width: 100%;
    min-height: 50vh;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.product-details .left .images {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 2vh;
    background-color: var(--white10);
    border-radius: var(--border-radius);
    padding: 3vh 2vh;
    overflow-x: scroll;
    overflow-y: hidden;
        box-sizing:border-box;
                scrollbar-width: none;


}

.product-details .left .images::-webkit-scrollbar {
    height: 0;
}


.product-details .left .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.product-details .left .side-image {
    width: 6vh;
    height: 6vh;
    max-width: 8vh;
    max-height: 8vh;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
}



.product-details .title {
    color: var(--white);
    font-weight: 600;
    font-size: var(--size-1);
}

.product-details .price {
    color: var(--color-primary);
    font-size: var(--size-4);
    margin-top: 2vh;
    font-weight: 600;
}


.product-details .desc {
    color: var(--color-text);
    font-weight: 400;
    line-height: 3.6vh;
    margin-top: 2vh;
    font-size: var(--size-5);
}

.detail-add-cart-btn {
    margin-top: 3vh;
}


.product-details .gift {
    position: relative;
    width: 7vh;
    height: 7vh;
    margin-top: 3vh;
    font-size: var(--size-3);
    background-color: var(--white20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: 0.3s ease all;
    z-index: 2;
}

.product-details .gift.active {
    background-color: var(--color-primary);

}

.product-details .input-box {
    position: absolute;
    left: 9vh;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 30vh;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: translateX(-2vh);
    transition: 0.3s ease all;
    pointer-events: none;
    opacity: 0;
}

.gift-box {
    position: relative;
}

.product-details .gift.active {
    background-color: var(--color-primary);
}

.product-details .gift.active~.input-box {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.product-details .input-box .gift-inp {
    width: 20vh;
    height: 100%;
    background-color: var(--white10);
    border: none;
    z-index: 1;
    color: var(--color-text);
    padding: 0vh 2vh;
    box-sizing: border-box;
    font-size: var(--size-5);
    outline: none;
}

.product-details .input-box .gift-btn {
    height: 100%;
    background-color: var(--color-primary20);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0vh 2vh;
    font-size: var(--size-5);
    color: var(--color-primary);
    font-weight: 500;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    transition: 0.3s ease all;
}

.product-details .desc {
    color: var(--color-text);
    font-size: var(--size-5);
    margin: 2vh 0;
    line-height: 3vh;
    font-weight: 400;
}


.product-details .input-box .gift-btn:hover {
    background-color: var(--color-primary);
    color: var(--white);
}




@media screen and (max-width:700px) {


    .product-details {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1vh;
    }

    .product-details .left .main-image {
        max-height: 30vh;
    }

    .product-details .left {
        min-height: auto;
    }

}
















