@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --yellow-color: #fcff00;
    --orange-color: #f6a029;
    --red-color: #c04b41;
    --pink-color: #c9278c;
    --green-color: #95c236;
    --button-background: #e73c8f;
    --search-button: #505050;
    --gray-background: #f7f7f7;
    --like-button: #fe7676;
    --footer-top: #181818;
    --footer-background: #252525;
    --border-color: #e9e8e8;
    --link-color: #999;
    --comment-background: #ffccff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
}

li {
    list-style: none;
}

section {
    padding: 15px 0;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.n-m {
    margin: -13px;
}

img {
    max-width: 100%;
}

.logo {
    max-width: 200px;
}

.fa-solid {
    line-height: 1.5;
}



/* CONTENT WRAPPER START */

.content-wrapper {
    padding: 40px 30px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 40px;
    margin-bottom: 20px;
}

.content-wrapper ul li {
    list-style: disc;
}

.content-wrapper ol li {
    list-style: decimal;
}

.content-wrapper p + h2,
.contnet-wrapper p + h3,
.content-wrapper p + h4,
.content-wrapper p + h5,
.content-wrapper p + h6 {
    margin-bottom: 20px;
}

.content-wrapper img {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* FIXED NAVBAR START*/

.hidden-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 3px solid var(--border-color);
    padding: 10px 0 0 0;
    z-index: 99999999;
}

.hidden-nav-wrapper {
    display: flex;
    gap: 10px;
}

.hidden-nav-logo {
    flex-shrink: 0;
    position: relative;
    top: -15px;
}

.selected-products {
    position: relative;
    width: 100%;
}

.selected-products ul li a::before {
    width: 0;
}

#clearListButton {
    background: none;
    border: 1px solid var(--footer-background);
    padding: 5px 20px;
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    #clearListButton {
        right: -30px;
    }
}

#clearListButton:hover {
    background-color: var(--footer-background);
    color: white;
}

#productImageList {
    gap: 10px;
}

#productImageList li img {
    width: 55px;
    height: 55px;
    border: 2px solid var(--pink-color);
    border-radius: 15px;
}

/* FIXED NAVBAR END*/

/* HEADER BANNER START */

.header-banner {
    background-color: var(--orange-color);
}

.container-background {
    background-image: url(../images/cargo-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

/* HEADER BANNER END */

/* COMMENTS LINK START */

.comment-fixed {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 99999999;
}

@media (max-width: 1200px) {
    .comment-fixed {
        display: none;
    }
}

/* COMMENTS LINK END */

/* HEADER TOP START */

.header-top {
    background-color: var(--gray-background);
    padding: 10px 0;
}

.header-top-left ul {
    display: flex;
    gap: 25px;
}

.header-top-left ul li a {
    font-size: 14px;
}

.header-top-left ul li a:hover {
    color: var(--pink-color);
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.header-top-right ul {
    display: flex;
    gap: 20px;
}

.header-top-right ul li {
    position: relative;
}

.header-top-right ul li a {
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-top-right ul li a:hover {
    color: var(--pink-color);
}

.header-top-right ul li:nth-child(2)::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: gray;
}

.header-top-right ul li:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: gray;
}
.header-top-right ul li:nth-child(4)::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: gray;
}

.header-top-right ul li:nth-child(4)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: gray;
}

.header-top-right ul li:nth-child(6)::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: gray;
}

/* HEADER TOP END */

/* HEADER CENTER START */

.border-bottom {
    border-bottom: 2px solid var(--border-color);
}

.search-bar {
    width: 100%;
    display: flex;
}

.search-bar input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 14px;
    outline: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.search-bar button {
    width: 70px;
    background-color: var(--search-button);
    border: 1px solid var(--search-button);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.search-bar button i {
    color: white;
    font-size: 18px;
}

.header-center-left {
    display: flex;
    justify-content: flex-end;
}

/* HEADER CENTER END */

/* HEADER BOTTOM START */

.header-bottom {
    padding: 20px 0 0 0;
    border-bottom: 3px solid var(--border-color);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1390px) {
    nav ul {
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    nav ul {
        gap: 5px;
    }
}

nav ul li {
    position: relative; /* before elementinin doğru konumlanabilmesi için */
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative; /* A elementinin konumunu belirle */
    font-size: 14px;
}

nav ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    border-radius: 5px;
    bottom: 15px; /* Aşağıya konumlandır */
    left: 0; /* Soldan başlat */
    transform: scaleX(0); /* Başlangıçta gizli */
    transition: all 0.6s ease;
}

nav ul li a:hover::before {
    transform: scaleX(1); /* Hover durumunda görünür yap */
}

@media (max-width:992px) {
    nav ul li a::before {
        width: 0;
    }
}


@media (max-width: 1200px) {
    nav ul li a {
        font-size: 12px;
    }
}
.cart {
    position: relative;
    width: 100%;
}
.basket {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.basket::before {
    content: "(0)";
    position: absolute;
    right: 0;
}

.cart-menu {
    position: absolute;
    right: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: white;
    min-width: 250px;
    padding: 25px 10px;
    display: none;
}

.total-price {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.cart-menu button {
    width: 100%;
    padding: 5px;
}

#clearCart {
    background-color: white;
    color: black;
    border: 1px solid black;
    margin: 5px 0;
    transition: all 0.3s ease;
}
#clearCart:hover {
    background-color: black;
    color: white;
}

.go-cart {
    background-color: var(--button-background);
    border: 1px solid var(--button-background);
    color: white;
    transition: all 0.3s ease;
}

.go-cart:hover {
    background-color: var(--green-color);
    border: 1px solid var(--green-color);
}

.cart:hover .cart-menu {
    display: block;
}

/* HEADER BOTTOM END */

/* DROPDOWN START */
.dropdown {
    position: relative;
}

.dropdown a {
    padding-bottom: 20px;
}

.dropdown-content {
    position: absolute;
    background: white;
    width: 940px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 30px;
    display: none;
    transition: all 0.3s ease;
    pointer-events: none;
    top: 44px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1340px) {
    .dropdown-content {
        width: 1075px;
    }
}

@media (max-width: 1125px) {
    .dropdown-content {
        width: 1030px;
    }
}

@media (max-width: 1120px) {
    .dropdown-content {
        position: relative;
        padding: 0;
    }
}

.slideInDown {
    animation-name: slideInDown;
    animation-duration: 0.6s;
}

@keyframes slideInDown {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .slideInDown {
        animation: none;
    }
}

.dropdown-items li a {
    text-transform: capitalize;
}

.dropdown-items li a::before {
    content: "";
    position: absolute;
    width: 0;
}

.dropdown-content a {
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
    pointer-events: auto;
    border-top: 3px solid var(--pink-color);
}

.dropdown-items {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.dropdown-items li {
    flex-basis: 30%;
}

.dropdown-items li a {
    font-size: 14px;
    color: var(--link-color);
    padding: 0;
}

.dropdown-items li a:hover {
    color: var(--pink-color);
}


.dropdown:nth-child(2) .dropdown-content {
    left: -132px;
}

.dropdown:nth-child(3) .dropdown-content {
    left: -288px;
}

@media (max-width: 992px) {
    .dropdown-items {
        display: none;
        flex-basis: 100%;
        padding: 10px;
    }

    .dropdown-image {
        display: none;
    }

    .dropdown.active .dropdown-items {
        display: block;
    }

    .dropdown-items li:nth-child(1) {
        display: none;
    }

    .dropdown:nth-child(1) .dropdown-content {
        left: -10px;
    }

    .dropdown:nth-child(2) .dropdown-content {
        left: -10px;
        border-top: none;
    }

    .dropdown:nth-child(3) .dropdown-content {
        left: -10px;
    }
}

@media (max-width: 992px) {
    .dropdown:hover .dropdown-content {
        display: none;
    }
    .dropdown-content {
        top: 0;
    }

    .dropdown a {
        padding-bottom: 0;
    }
}

.dropdown.active .dropdown-content {
    display: block;
    background: none;
    box-shadow: none;
    border: none;
}

/* DROPDOWN END */

/* MOBILE HEADER START */

.mobile-header {
    display: none;
}

@media (max-width: 992px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 15px;
    }

    .mobile-top {
        padding: 10px 0;
    }

    .mobile-top .border-bottom {
        padding-bottom: 10px;
    }

    .mobile-top ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .mobile-top ul li a {
        color: var(--link-color);
        transition: all 0.3s ease;
    }

    .mobile-top ul li a:hover {
        color: var(--pink-color);
    }

    .mobile-logo img {
        width: 150px;
    }

    .basket {
        margin-left: 20px;
        padding-bottom: 0;
    }
    .mobile-center {
        transition: position 0.3s ease, top 0.3s ease;
    }

    .mobile-center-left {
        display: flex;
        align-items: center;
    }

    .mobile-center-right {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .sticky {
        position: fixed;
        top: 0;
        background-color: white;
        width: 100%;
        padding: 10px 0;
        z-index: 1000;
        box-shadow: 0 0 10px 0;
    }

    .hamburger {
        background-color: var(--footer-background);
        color: white;
        padding: 10px;
        font-size: 14px;
        position: relative;
        cursor: pointer;
    }
    .hamburger::after {
        content: "";
        position: absolute;
        top: 8px;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: white;
    }
    .hamburger::before {
        content: "";
        position: absolute;
        bottom: 8px;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: white;
    }
    .mobile-menu {
        width: 35%;
        position: fixed;
        top: 0;
        left: -100%;
        background-color: white;
        border-right: 2px solid var(--border-color);
        height: 100vh;
        z-index: 999999;
        transition: all 0.5s ease;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .mobile-menu.active {
        left: 0;
    }

    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px;
        border: 2px solid #f1f1f1;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

    .mobile-menu ul {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu ul li {
        border-bottom: 1px solid var(--border-color);
        padding: 25px;
        cursor: pointer;
        width: 100%;
    }

    .mobile-menu .dropdown li {
        padding: 0;
        border-bottom: none;
    }

    .overlay {
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        top: 0;
        left: -100%;
        background-color: rgba(0, 0, 0, 0.8);
        transition: all 0.5s ease;
    }

    .overlay.active {
        left: 0px;
    }

    .close-btn {
        display: none;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 32px;
        color: white;
        cursor: pointer;
    }

    .mobile-menu.active .close-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 55%;
    }
}

@media (max-width: 430px) {
    .mobile-menu {
        width: 75%;
    }
}

/* MOBILE HEADER END */

/* CATEGORY FILTER SLIDER START */

.category-filter {
    padding: 15px 0;
    background-color: var(--gray-background);
}

.category-item {
    text-align: center;
}

.category-name {
    font-size: 11px;
}

/* CATEGORY FILTER SLIDER END */

/* HERO START */

.banner {
    background-color: var(--gray-background);
}

.banner-right {
    height: 100%;
}

@media (max-width: 992px) {
    .banner-right {
        margin-top: 10px;
        width: 100%;
    }
}

.wood-panel {
    width: 100%;
}

@media (max-width: 992px) {
    .wood-panel {
        display: none;
    }
}

/* HERO END */

/* PROGRESS SCROLL BUTTON START */
.progress-wrap {
    right: 50px;
    bottom: 50px;
    color: white;
    position: fixed;
    height: 46px;
    width: 46px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px white;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

@media (max-width: 992px) {
    .progress-wrap {
        right: 35px;
        bottom: 100px;
    }
}

.progress-wrap input {
    z-index: 10001;
}

.progress-wrap input:checked + html {
    scroll-snap-type: unset;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "↑";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: gray;
    left: 0;
    top: -2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap::before {
    position: absolute;
    content: "↑";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    -webkit-text-fill-color: var(--pink-color);
    left: 0;
    top: -2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg {
    stroke: var(--pink-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-circle path {
    stroke: var(--pink-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* PROGRESS SCROLL BUTTON END */

/* PRODUCTS START */

.products {
    background-color: var(--gray-background);
}

.product-box {
    position: relative;
}

.product-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 15px 15px 35px 15px;
    overflow: hidden;
    position: relative;
}

.product-item-image {
    position: relative;
}

.product-item-image img {
    width: 100%;
}

.hover-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.product-item:hover .hover-image {
    opacity: 1;
}

@media (max-width: 992px) {
    .product-item:hover .hover-image {
        opacity: 0;
    }
}

.discount {
    font-size: 18px;
    position: absolute;
    top: 10px;
    left: -75px;
    padding: 10px;
    background-color: var(--yellow-color);
    width: 210px;
    font-weight: bold;
    transform: rotate(-50deg);
}

.sold-out {
    font-size: 18px;
    position: absolute;
    top: 10px;
    left: -75px;
    padding: 10px;
    background-color: var(--red-color);
    color: white;
    width: 210px;
    font-weight: bold;
    transform: rotate(-50deg);
}


.heart {
    width: 100px;
    height: 100px;
    background: url("https://cssanimation.rocks/images/posts/steps/heart.png") no-repeat;
    background-position: 0 0;
    cursor: pointer;
    transition: background-position 1s steps(28);
    transition-duration: 0s;
  }

  .heart.is-active {
    transition-duration: 1s;
    background-position: -2800px 0;
  }

.add-favorite {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    z-index: 99;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #e2e2e2;
    transition: all 0.3s ease;
}

.remove-favorite {
    position: absolute;
    top: 20px;
    right: 30px;
    height: 50px;
    width: 50px;
    z-index: 99;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #e2e2e2;
    transition: all 0.3s ease;
}

.add-favorite:hover {
    color: var(--like-button);
}

.add-favorite.favorited {
    color: var(--like-button);
}


/* Favorite Heart İCons */

.heart {
    width: 100px;
    height: 100px;
    background: url(https://cssanimation.rocks/images/posts/steps/heart.png) no-repeat;
    background-position: 0 0;
    cursor: pointer;
    transition: background-position 1s steps(28);
    transition-duration: 0s;
    position: relative;
    left: -27px;
    right: 0;
    bottom: 25px;
  }

  .heart.is-active {
    transition-duration: 1s;
    background-position: -2800px 0;
  }




.product-item-bottom {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
}
.product-item-name {
    font-size: 27px;
    font-weight: 300;
}
.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 22px;
}

.old-price {
    color: gray;
    text-decoration: line-through;
}

.price-icon {
    font-size: 25px;
}
.kdv {
    font-size: 17px;
}

.products .content-wrapper {
    margin-top: 30px;
}

.products .content-wrapper div {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* PRODUCTS END */

/* FOOTER START */

.footer-top {
    background-color: var(--footer-top);
    padding: 20px 0;
}

.footer-top-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-center {
    background-color: var(--footer-background);
    padding: 100px 0;
}

.footer-center-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-list-title {
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    font-size: 22px;
}

.footer-list ul li {
    margin-bottom: 15px;
}

.footer-list ul li a {
    color: var(--link-color);
    transition: all 0.3s ease;
}

.footer-list ul li a:hover {
    color: var(--pink-color);
}

.footer-bottom {
    background-color: var(--footer-background);
    padding: 20px 0;
}

.qr {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--link-color);
}

.qr img {
    width: 100px;
    height: 120px;
}

.footer-bottom-left {
    color: var(--link-color);
    padding-top: 15px;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}

@media (max-width: 992px) {
    .footer-bottom-right {
        margin-top: 15px;
        justify-content: flex-start;
    }
}

.footer-bottom-right ul {
    display: flex;
    gap: 20px;
}

.footer-bottom-right ul li a {
    color: var(--link-color);
    transition: all 0.3s ease;
}

.footer-bottom-right ul li a:hover {
    color: var(--pink-color);
}
/* FOOTER END */

/* BREADCRUMB START */

.breadcrumb {
    background-color: var(--gray-background);
    padding: 20px 0;
    margin: 0;
}

.breadcrumb-title {
    font-size: 32px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .breadcrumb-title {
        margin-bottom: 20px;
    }
}

.breadcrumb-title-info {
    font-size: 16px;
}

.breadcrumb-info {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .breadcrumb-info {
        justify-content: flex-start;
    }
}

.breadcrumb-info ul {
    display: flex;
    gap: 15px;
}

/* BREADCRUMB END */

/* LOOKED PAGE START */

.viewed-products {
    background-color: var(--gray-background);
    padding: 20px 0;
}

/* LOOKED PAGE END */

/* FAVORITES PAGE START */

.favorites-page {
    background-color: var(--gray-background);
    padding: 20px 0;
}

/* FAVORITES PAGE END */

/* PRODUCT DETAIL PAGE START */

.detail-slider-wrapper img {
    width: 100%;
}

.swiper-slide-thumb-active {
    border: 2px solid black;
}

.productDetailSlider {
    margin-top: 10px;
}

.productDetailSwiper2 {
    border: 3px solid var(--link-color);
}


@media (max-width: 992px) {
    .product-content {
        margin-top: 20px;
    }
}


.stock-true {
    background-color: var(--pink-color);
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

.materials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
}

.materials span {
    font-weight: bold;
}

.warning {
    font-size: 18px;
    color: var(--red-color);
}

.warning a {
    font-size: 18px;
    color: black;
}

.product-price {
    display: flex;
    justify-content: space-between;
    border: 1px solid gray;
    padding: 20px;
    border-radius: 5px;
}

@media (max-width:395px) {
    .product-price {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.product-price-item {
    font-size: 32px;
    display: flex;
    align-items: center;
}

.price-item-wrapper {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.line-price {
    color: var(--link-color);
    text-decoration: line-through;
}

.detail-price {
    font-size: 42px;
}

.product-select {
    width: 100%;
    position: relative;
}

.product-select i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 18px;
}

.product-select select {
    width: 100%;
    height: 50px;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0 30px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.product-btn button {
    margin-bottom: 12px;
    width: 100%;
    font-size: 18px;
    padding: 20px;
    border: none;
    background-color: var(--pink-color);
    color: white;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.product-btn button:hover {
    background-color: var(--green-color);
}

.stars {
    display: inline-block;
    color: #ccc;
    font-size: 28px;
    cursor: pointer;
}

.star.filled {
    color: #FFD700;
}

.star.hover {
    color: gold; /* Yıldızlar dolu gibi görünür */
}

.rating-info {
    font-size: 14px;
    color: #666;
}

.stock-false {
    background-color: var(--red-color);
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

.not-allowed {
    cursor: not-allowed;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 330px;
    margin: 0 auto;
    background: #fff;
    transform: translateY(-50px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    border-radius: 0;
    border: none;
}

.modal.show {
    display: block;
}

.modal.show .modal-content {
    transform: translateY(140px);
    opacity: 1;
}

@media (max-width:425px) {
    .modal-content {
        width: 90%;
    }
}

#close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 14px;
    cursor: pointer;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 0;
}

.modal-title {
    background-color: #eee;
    padding: 10px 20px 10px 20px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-body input {
    padding: 8px;
}

.submit-btn {
    width: 100%;
    font-size: 18px;
    padding: 10px;
    border: none;
    background-color: var(--pink-color);
    color: white;
    transition: all 0.3s ease;
    border-radius: 5px;
}

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

#stockAlert {
    background-color: #009999;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.bell {
    width: 20px;
    height: 20px;
    font-size: 22px;
    margin-left: 10px;
    color: white;
    -webkit-animation: ring 4s 0.7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s 0.7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s 0.7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }
    1% {
        -webkit-transform: rotateZ(30deg);
    }
    3% {
        -webkit-transform: rotateZ(-28deg);
    }
    5% {
        -webkit-transform: rotateZ(34deg);
    }
    7% {
        -webkit-transform: rotateZ(-32deg);
    }
    9% {
        -webkit-transform: rotateZ(30deg);
    }
    11% {
        -webkit-transform: rotateZ(-28deg);
    }
    13% {
        -webkit-transform: rotateZ(26deg);
    }
    15% {
        -webkit-transform: rotateZ(-24deg);
    }
    17% {
        -webkit-transform: rotateZ(22deg);
    }
    19% {
        -webkit-transform: rotateZ(-20deg);
    }
    21% {
        -webkit-transform: rotateZ(18deg);
    }
    23% {
        -webkit-transform: rotateZ(-16deg);
    }
    25% {
        -webkit-transform: rotateZ(14deg);
    }
    27% {
        -webkit-transform: rotateZ(-12deg);
    }
    29% {
        -webkit-transform: rotateZ(10deg);
    }
    31% {
        -webkit-transform: rotateZ(-8deg);
    }
    33% {
        -webkit-transform: rotateZ(6deg);
    }
    35% {
        -webkit-transform: rotateZ(-4deg);
    }
    37% {
        -webkit-transform: rotateZ(2deg);
    }
    39% {
        -webkit-transform: rotateZ(-1deg);
    }
    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }
    1% {
        -moz-transform: rotate(30deg);
    }
    3% {
        -moz-transform: rotate(-28deg);
    }
    5% {
        -moz-transform: rotate(34deg);
    }
    7% {
        -moz-transform: rotate(-32deg);
    }
    9% {
        -moz-transform: rotate(30deg);
    }
    11% {
        -moz-transform: rotate(-28deg);
    }
    13% {
        -moz-transform: rotate(26deg);
    }
    15% {
        -moz-transform: rotate(-24deg);
    }
    17% {
        -moz-transform: rotate(22deg);
    }
    19% {
        -moz-transform: rotate(-20deg);
    }
    21% {
        -moz-transform: rotate(18deg);
    }
    23% {
        -moz-transform: rotate(-16deg);
    }
    25% {
        -moz-transform: rotate(14deg);
    }
    27% {
        -moz-transform: rotate(-12deg);
    }
    29% {
        -moz-transform: rotate(10deg);
    }
    31% {
        -moz-transform: rotate(-8deg);
    }
    33% {
        -moz-transform: rotate(6deg);
    }
    35% {
        -moz-transform: rotate(-4deg);
    }
    37% {
        -moz-transform: rotate(2deg);
    }
    39% {
        -moz-transform: rotate(-1deg);
    }
    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }
    1% {
        transform: rotate(30deg);
    }
    3% {
        transform: rotate(-28deg);
    }
    5% {
        transform: rotate(34deg);
    }
    7% {
        transform: rotate(-32deg);
    }
    9% {
        transform: rotate(30deg);
    }
    11% {
        transform: rotate(-28deg);
    }
    13% {
        transform: rotate(26deg);
    }
    15% {
        transform: rotate(-24deg);
    }
    17% {
        transform: rotate(22deg);
    }
    19% {
        transform: rotate(-20deg);
    }
    21% {
        transform: rotate(18deg);
    }
    23% {
        transform: rotate(-16deg);
    }
    25% {
        transform: rotate(14deg);
    }
    27% {
        transform: rotate(-12deg);
    }
    29% {
        transform: rotate(10deg);
    }
    31% {
        transform: rotate(-8deg);
    }
    33% {
        transform: rotate(6deg);
    }
    35% {
        transform: rotate(-4deg);
    }
    37% {
        transform: rotate(2deg);
    }
    39% {
        transform: rotate(-1deg);
    }
    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

.product-detail-border {
    padding: 100px 0;
    position: relative;
}

.product-detail-border::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    top: 100px;
    background-color: var(--border-color);
}

.product-detail-border::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    bottom: 0;
    background-color: var(--border-color);
}

/* COMMENT SECTION START */

.comment-section {
    padding: 100px 0;
}

.comment-left {
    color: var(--pink-color);
    font-size: 22px;
}

.comment-left i {
    color: var(--orange-color);
}

.comment-right {
    position: relative;
}

.comment-right::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 2px;
    top: -60px;
    left: -100px;
    background-color: var(--border-color);
}

.comment-right-title {
    font-size: 22px;
    margin-bottom: 48px;
}


.comment-box {
    width: 100%;
    background-color: var(--comment-background);
    padding: 30px;
    position: relative;
    margin-bottom: 48px;
}

.comment-box::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--comment-background) transparent transparent;
}

.comment-box::before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
}



.comment-stars {
    display: flex;
    gap: 5px;
}

.comment-stars i {
    color: #882764;
    font-size: 14px;
    margin: 10px 0;
}

.comment-desc {
    margin-bottom: 10px;
    font-weight: 300;
}

.comments-page-router {
    text-align: center;
    margin-bottom: 48px;
}

.comments-page-router a:hover {
    color: var(--pink-color);
}

.comment-form input,
textarea {
    width: 100%;
}

.comment-form input,
textarea {
    margin-bottom: 10px;
    padding: 10px;
    outline: none;
}

.comment-form textarea {
    resize: none;
    height: 100%;
}

.comment-btn {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .comment-btn {
        justify-content: flex-start;
    }

    .comment-btn button {
        width: 100%;
    }

    .comment-form img {
        margin-bottom: 20px;
    }
}

.comment-btn button {
    background: transparent;
    border: 1px solid var(--footer-top);
    padding: 15px 60px;
}



/* COMMENT SECTION END */

/* PRODUCT DETAIL PAGE END */



/* BLOG PAGE START */

.blog-title {
    text-align: center;
    margin-bottom: 48px;
}

.blog-item {
    width: 100%;
    color: var(--pink-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.blog-item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.blog-item img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: 50% 100%;
}

.blog-item-title {
    padding: 20px;
    font-size: 22px;
}


/* BLOG PAGE  END */


/* BLOG DETAIL PAGE START */

.product-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: bold;
}

.blog-detail .product-box {
    margin-bottom: 20px;
}

/* BLOG DETAIL PAGE END */

/* CONTACT PAGE START */

.contact-page {
    padding: 20px 0 100px 0;
}


.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    text-align: center;
    margin-bottom: 24px;
}
.contact-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    height: 2px;
    width: 40%;
    background-color: #000;
}

@media (max-width:992px) {
    .maps {
        margin-top: 20px;
    }
}

.contact-form input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    resize: none;
}

.contact-form img {
    width: 300px;
     margin-bottom: 10px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: var(--pink-color);
    transition: all 0.3s ease;
    color: white;
    border: none;
    font-size: 22px;
}

.contact-form button:hover {
    background-color: var(--green-color);
}

.contact-title-bottom {
    text-align: center;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--footer-background);
}

.contact-title-bottom {
    margin-bottom: 20px;
}
.contact-info-title {
    font-size: 22px;
}

/* CONTACT PAGE END */



/* FOOTER STICKY START */

.footer-sticky-bar {
    display: block;
    border-radius: 32px 32px 0px 0px;
    padding: 15px 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    z-index: 999;
    left: 0;
    box-shadow: 0px 0px 6px var(--pink-color);
}

.footer-sticky-bar .sticky-area {
    display: flex;
    align-items: center;
}

.footer-sticky-bar .sticky-area .sticky-box {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.footer-sticky-bar .sticky-area .sticky-box .sticky-title {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-sticky-bar .sticky-area .sticky-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-sticky-bar .sticky-area .sticky-box a i {
    font-size: 28px;
    margin-bottom: 3px;
    color: var(--pink-color);
}
@media (min-width: 992px) {
    .footer-sticky-bar {
        display: none;
    }
    .dp-none {
        display: none;
    }
}
.footer-sticky-bar .sticky-area .sticky-box svg {
    margin-bottom: 4px;
    width: 24px;
    height: 24px;
}

/* FOOTER STICKY END */

/* WHATSAPP - ICON START */
button.wh-ap-btn {
    outline: none;
    width: 60px;
    height: 60px;
    border: 0;
    background-color: #2ecc71;
    padding: 0;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
    content: "";
    background-image: url("/front/assets/images/whatsapp-32.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
}

button.wh-ap-btn:hover {
    opacity: 1;
    background-color: #20bf6b;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
    position: fixed;
    bottom: 0;
    right: 0;
}

.wh-fixed {
    margin-right: 15px;
    margin-bottom: 15px;
}

.wh-fixed > a {
    display: block;
    text-decoration: none;
}

.wh-fixed > a:hover button.wh-ap-btn::before {
    opacity: 1;
    width: auto;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100px;
}

/* animacion pulse */

.whatsapp-pulse {
    width: 60px;
    height: 60px;
    left: 30px;
    bottom: 10px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display: inline-block;
    line-height: 65px;
}

@media (max-width: 992px) {
    .whatsapp-pulse {
        display: none;
    }
}

.whatsapp-pulse:before {
    position: absolute;
    content: " ";
    z-index: -1;
    bottom: -15px;
    right: -15px;
    background-color: #10b418;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: 0.6;
    }
    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* WHATSAPP - ICON END */

/* CALL BUTTON START */

.call-buton .cc-calto-action-ripple {
    z-index: 999;
    position: fixed;
    left: 30px;
    bottom: 125px;
    background: #ec8b00;
    width: 60px;
    height: 60px;
    padding: 20px;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 22px;
}
.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
            0 0 0 10px rgba(236, 139, 0, 0.2);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
            0 0 0 10px rgba(236, 139, 0, 0.2);
    }
    100% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
            0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
            0 0 0 20px rgba(236, 139, 0, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
            0 0 0 10px rgba(236, 139, 0, 0.2);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2),
            0 0 0 10px rgba(236, 139, 0, 0.2);
    }
    100% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
            0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2),
            0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2),
            0 0 0 20px rgba(236, 139, 0, 0);
    }
}

@media (max-width: 992px) {
    .call-buton .cc-calto-action-ripple {
        display: none;
    }
}

/* CALL BUTTON END */

/* ERROR PAGE START */



.error-page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 62px;
    text-align: center;
}

.error-page-title a {
    background-color: var(--pink-color);
    padding: 10px 20px;
    color: white;
}





/* ERROR PAGE END */


/* COMMENTS PAGE START */

.comments-wrapper {
    position: relative;
}

.comments-title {
    text-align: center;
    margin-bottom: 30px;
}

.comments-wrapper .comment-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comments-wrapper.has-answer .comment-box::before {
    display: none;
}

.comments-wrapper.has-answer .answer-wrapper::before {
    content: "";
    position: absolute;
    background-color: var(--border-color);
    height: 2px;
    width: 100%;
    bottom: 10px;
    left: 0;
    right: 0;
}

.answer-box {
    width: 45%;
    position: relative;
    margin: -15px 0 30px 0;
    padding:15px;
    background-color: var(--gray-background);
}

@media (max-width:768px) {
    .answer-box {
        width: 100%;
    }
}



.answer-wrapper{
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.answer-desc {
        margin-bottom: 10px;
        font-weight: 300;
}


/* COMMENTS PAGE END */

/* ABOUT US PAGE START */


.small-container {
    max-width: 992px;
    margin: 0 auto;
    padding: 50px 0;
}

@media (max-width:992px) {
    .small-container {
        max-width: 100%;
    }
}

.small-container .swiper-slide img {
    width: 100%;
}


.aboutSlider .swiper-button-next,
.aboutSlider .swiper-button-prev {
    color: white;
    font-weight: 900;
    visibility: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.aboutSlider .swiper-button-prev {
    transform: translateX(-20px);
}

.aboutSlider:hover .swiper-button-next,
.aboutSlider:hover .swiper-button-prev {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .aboutSlider .swiper-button-next,
    .aboutSlider .swiper-button-prev {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        transition: none;
    }
}


.small-container .content-wrapper {
    box-shadow: none;
}

.about-us-title {
    font-size: 32px;
    text-align: center;
}


/* ABOUT US PAGE END */
