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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --color-1: #b57bdc;
    --color-2: #200e32;
    --color-3: #472439;
    --color-4: #bf5695;
    --color-5: #cab7c2;
    --color-6: #f9e2ff;
    --color-7: #feedf7;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

section {
    padding: 50px 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Wrapper START*/
.content-wrapper {
    background-color: #fff;
    box-shadow: 0 5px 10px -8px var(--color-4);
    padding: 30px 20px;
    margin-top: 15px;
    margin-bottom: 50px;
    border-radius: 5px;
}

.content-wrapper p {
    padding: 5px;
    color: #000;
}

.content-wrapper img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.content-wrapper-title {
    font-weight: 600;
    font-size: 25px;
    padding-bottom: 10px;
    text-align: center;
}

.content-wrapper ul {
    padding: 0 20px 20px 20px;
}

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

.content-wrapper h1 {
    font-size: 25px;
}

.content-wrapper h2 {
    font-size: 23px;
    font-weight: 500;
}

.content-wrapper h3 {
    font-size: 21px;
    font-weight: 500;
}
/* Content Wrapper END*/

/* HEADER START */


.header-top .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right-icons,
.desktop-search-input,
.desktop-logo {
    display: flex;
    align-items: center;
}

.desktop-search-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-search-input input {
    position: relative !important;
    width: 100% !important;
    padding: 10px 10px 10px 20px !important;
    border: none !important;
    border-radius: 30px !important;
    box-shadow: #77278a7a 0px 7px 29px 0px !important;
}

.desktop-search-input input:focus {
    border: none;
    outline: none;
}


.header-right-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #902aa9;
}

.header-icon i {
    font-size: 30px;
}

.desktop-logo img {
    max-width: 250px;
    width: 100%;
    object-fit: contain;
    max-height: 100px;
}

@media (max-width: 1200px) {
    .header-icon a {
        font-size: 13px;
    }

    .header-icon i {
        font-size: 25px;
    }

    .header-right-icons {
        gap: 15px;
    }

    .desktop-search {
        left: 66%;
    }
}

@media (max-width: 992px) {
    .header-icon a {
        display: flex;
        align-items: center;
        white-space: nowrap;
        gap: 5px;
    }

    .header-right-icons {
        gap: 10px;
    }

    .desktop-search {
        left: 58%;
    }
}

@media (max-width: 820px) {
    .desktop-search-input {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-search-input input {
        margin-bottom: 0;
        margin-top: 0;
    }
}
/* HEADER-TOP END */

/* HEADER-BOTTOM START */
.header-bottom {
    background-color: var(--color-1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown .all-products {
    position: relative;
    color: white;
    font-weight: 400;
    font-size: 20px;
    padding-right: 15px;
    border-right: 1px solid white;
    padding: 5px;
    display: flex;
    align-items: center;
    padding-right: 10px;
}
.all-products img {
    width: 40px;
    height: 40px;
}
.drop-menu .left ul {
    max-height: 400px;
    overflow-y: auto;
}

.header-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: white;
    transition: all 0.3s ease;
}

.header-menu li a i {
    color: #fff;
    font-size: 30px;
    transition: all 0.3s ease;
}

.header-menu li:hover a,
.header-menu li:hover i {
    opacity: 0.8;
}

.dropdown {
    position: relative;
}

.drop-menu {
    position: absolute;
    z-index: 999;
    background: white;
    top: 50px;
    width: 900px;
    height: auto;
    display: flex;
    box-shadow: 10px 20px 27px #e5d3de;
    transform: scaleY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: top;
    opacity: 0;
}

.dropdown:hover .drop-menu {
    transform: scaleY(1);
    opacity: 1;
}

.drop-menu .left {
    width: 30%;
    color: #000;
    padding: 60px 50px;
}

.drop-menu .right {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    box-sizing: border-box;
    background: white !important ; /* Arka plan resmi burada tanımlanır */
    background-size: cover;
    background-position: center;
    padding: 10px 40px 40px 40px;
}

.drop-menu .left ul li {
    padding-bottom: 20px;
}

.drop-menu .left ul li a i {
    font-size: 15px;
    color: var(--color-3);
}

.drop-menu .left li a {
    color: #000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.drop-menu .left li a:hover {
    color: var(--color-4);
}

.drop-menu .right li a {
    color: #77278a !important;
    transition: all 0.3s ease;
}

.drop-menu .right li a:hover {
    color: var(--color-4);
}

.right .drop-btn {
    font-size: 10px;
    line-height: 12px;
    color: white;
    padding: 5px 15px;
    border: 1px solid #bf5695;
    background-color: transparent;
}


.menu-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.menu-list li {
    width: 25%;
    box-sizing: border-box;
    padding-bottom: 15px;
}

.menu-list li a {
    text-decoration: none;
    color: #000;
}

.box-list {
    display: flex;
    margin: 0px;
    padding: 0px;
    align-items: center;
    justify-self: center;
    gap: 25px;
}

.right-list .box-list a {
    padding: 23px 20px;
    margin: 5px 0;
    color: white !important;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--color-1);
    width: 170px;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .header-menu li a i {
        font-size: 25px;
    }

    .header-menu li a {
        gap: 5px;
    }

    .header-menu li:first-child a {
        display: flex;
        align-items: center;
        white-space: nowrap;
        gap: 5px;
        font-size: 15px;
    }

    .header-menu li:first-child a img {
        max-width: 25px;
        max-height: 25px;
    }
}

@media (max-width: 992px) {
    .header-menu li a i {
        font-size: 20px;
    }

    .header-menu li a {
        font-size: 12px;
    }
}
/* HEADER-BOTTOM END */

/* HEADER-MOBILE START */
.header-mobile {
    display: none;
}

.header-mobile-top {
    background-color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.header-mobile-top a {
    color: #fff;
}

.mobile-truck {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-mobile-top ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-mobile-center {
    background-color: var(--color-3);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mobile-basket {
    color: var(--color-4);
    font-size: 17px;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
}

.header-mobile-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #fff;
}

.desktop-search-input {
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-input {
    position: relative;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    border: none;
    background-color: #f8f8f8;
    border-radius: 10px;
    margin-bottom: 40px;
}

.mobile-search {
    position: absolute;
    top: 40%;
    left: 85%;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: linear-gradient(180deg, #472439 0%, #7a3960 100%);
    padding: 8px;
    border-radius: 10px;
}

.hamburger-menu .dot-line {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hamburger-menu .dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-4);
    border-radius: 50%;
}

.hamburger-menu .short-line {
    width: 90%;
    height: 4px;
    background-color: #fff;
}

.hamburger-menu .line {
    width: 100%;
    height: 4px;
    background-color: #fff;
}

.hamburger-menu .pink-line {
    width: 100%;
    height: 4px;
    background-color: var(--color-4);
}

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

    .header-mobile {
        display: block;
    }

    .header-modal {
        display: none;
    }

    .mobile-search {
        position: absolute;
        top: 40%;
        left: 85%;
    }
}

@media (max-width: 768px) {
    .mobile-search {
        position: absolute;
        top: 40%;
        left: 82%;
    }
}

@media (max-width: 576px) {
    .page-header-list {
        display: flex;
        align-items: center;
    }

    .mobile-search {
        top: 40%;
        left: 77%;
    }
}

@media (max-width: 460px) {
    .mobile-search {
        top: 40%;
        left: 74%;
    }
}

@media (max-width: 395px) {
    .mobile-logo img {
        max-width: 200px;
        width: 100%;
        object-fit: contain;
        height: 60px;
    }

    .mobile-search {
        top: 40%;
        left: 70%;
    }
}

/* HEADER-MOBILE END */

/* HEADER-MODAL START */
.header-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 999999999999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
}

.header-modal.active {
    opacity: 1;
    transform: translateX(0);
}

.modal-icon {
    color: #c4c4c4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10px 20px 10px;
}

.modal-logo img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 75px;
    object-fit: contain;
}

.modal-search {
    position: absolute;
    left: 93%;
    top: 30px;
}

.modal-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
}

.modal-icons a {
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.modal-icons i {
    color: var(--color-4);
    font-size: 30px;
}

.modal-menu {
    padding: 50px 10px;
    padding-bottom: 100px;
}

.modal-menu > ul > li.modal-menu-title {
    margin-bottom: 20px;
}

.modal-menu > ul > li.modal-menu-title > a {
    font-size: 25px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.modal-menu > ul > li:not(.modal-menu-title) {
    padding-bottom: 20px;
}

.modal-menu > ul > li:not(.modal-menu-title) > a {
    font-size: 22px;
    color: #000;
    padding-bottom: 20px;
}

.modal-menu li {
    padding-bottom: 15px;
}

.modal-menu li a {
    color: black;
    font-size: 22px;
}

.submenu {
    display: none;
    max-height: 0;
    overflow: scroll;
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    margin-top: 10px;
    border-radius: 4px;
    transition: max-height 0.3s ease;
    display: flex;
    flex-wrap: wrap;
}

.modal-menu .submenu li {
    padding: 10px 0;
}

.modal-menu .submenu li a {
    color: #333;
    font-size: 20px;
}

.modal-menu .submenu li a:hover {
    color: #007bff;
}

.modal-menu-title:hover .submenu {
    max-height: 300px;
    padding: 20px;
}

.header-modal-footer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    border-radius: 20px;
    flex-wrap: wrap;
}

.modal-icon-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-right: 2px solid var(--color-4);
    padding-right: 20px;
}

.modal-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* HEADER-MODAL END */
/* HEADER END */

/* HOME-IMAGES START */
.home-images img {
    width: 100%;
}

.home-slider-section {
    position: relative;
    padding: 0;
}

.mobile-home-slider {
    display: none;
}

.mobile-home-slider img {
    border-radius: 20px;
    max-width: 100%;
    display: block;
    min-height: 250px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .left-content-title {
        font-size: 36px;
        line-height: 50px;
        width: 75%;
    }

    .left-content-desc {
        font-size: 22px;
        line-height: 27px;
    }
}

@media (max-width: 1024px) {
    .left-content-title {
        font-size: 30px;
        line-height: 40px;
        width: 75%;
    }

    .left-content-desc {
        font-size: 18px;
        line-height: 27px;
    }
}

@media (max-width: 992px) {
    .left-content-title {
        font-size: 28px;
        line-height: 40px;
        width: 100%;
    }

    .left-content-desc {
        font-size: 13px;
        line-height: 22px;
        width: 100%;
    }
}

@media (max-width: 820px) {
    .left-content {
        display: none;
    }

    .mobile-home-slider {
        display: block;
        padding-top: 5px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .home-slider-section {
        display: none;
    }
}
/* HOME-IMAGES END */

/* ICON-SLIDER START */
.icons-slider-section {
    padding: 20px 0;
    overflow: visible;
}

.icon-box {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px 10px;
    margin-inline: 20px;
    border: none;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: var(--color-5) 0px 7px 29px 0px;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.icon-box:hover {
    background-color: var(--color-3);
    color: #fff;
}

.icon-box:hover i,
.icon-box:hover span {
    color: #fff;
}

.icon-box i {
    font-size: 30px;
    color: var(--color-4);
}

.icon-box span {
    font-size: 16px;
    color: #333;
}

.iconSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.swiper-slide:nth-child(1) .icon-box:hover {
    background-color: var(--color-1);
}

.swiper-slide:nth-child(2) .icon-box:hover {
    background-color: #a743bf;
}

.swiper-slide:nth-child(3) .icon-box:hover {
    background-color: #ac4ec3;
}

.swiper-slide:nth-child(4) .icon-box:hover {
    background-color: #cb54e8;
}

@media (max-width: 1200px) {
    .icon-box span {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .icon-box span {
        font-size: 14px;
    }

    .icon-box i {
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .icon-box {
        gap: 5px;
    }
    .icon-box span {
        font-size: 12px;
    }

    .icon-box i {
        font-size: 20px;
    }
}
/* ICON-SLIDER END */

/* CAMPAIGN START */
.campaign-title {
    font-weight: 300;
    font-size: 50px;
    text-align: center;
    color: var(--color-5);
    padding-bottom: 50px;
}

.compaign-box {
    display: flex;
    min-height: 100%;
}

.img-box {
    width: 100%;
}

.campaign-img {
    min-width: 300px;
    width: 100%;
    max-height: 420px;
    height: auto;
    object-fit: contain;
    position: relative;
}

.campaign-text {
    position: absolute;
    top: 166px;
    left: -106px;
    width: 100%;
    background-color: var(--color-4);
    color: #fff;
    padding: 6px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-45deg);
    transform-origin: left top;
}

.text-box {
    background-color: var(--color-6);
    padding: 10px;
}

@media (min-width: 992px){
    .text-box {
        background-color: var(--color-6);
        padding: 10px;
        min-width: 500px;
        width: 100%;
    }
    
}

.text-box-title {
    font-weight: 500;
    font-size: 35px;
    line-height: 42px;
    color: #472439;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-box-title img {
    max-width: 75px;
    width: 100%;
}

.text-box-desc {
    color: #472439;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 13px;
}

.pro-name {
    font-size: 25px;
    color: #472439;
    font-weight: 500;
    padding-bottom: 20px;
}

.price-box {
    padding-bottom: 40px;
}

.sold-out {
    padding-bottom: 18px;
    font-size: 20px;
    text-decoration: line-through;
    color: var(--color-5);
}

.new-price {
    font-size: 30px;
    color: #472439;
    font-weight: 700;
}

.new-price span {
    font-size: 15px;
}

.last-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.last-time span {
    background-color: var(--color-1);
    color: #fff;
    padding: 3px 8px;
}

.campaign-btn {
    background-color: var(--color-4);
    color: #fff;
    padding: 5px 20px;
    transition: all 0.3s ease;
}

.campaign-btn:hover {
    background-color: var(--color-1);
    color: #fff;
}

.swiper-pagination span {
    display: none; /* Sayfa numaralarını gizle */
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.swiper-pagination span {
    display: block;
    width: 30px;
    height: 4px;
    background: #000;
    margin: 0 5px;
    border-radius: 2px;
}

.smallSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.smallSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .text-box-title {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .text-box-title img {
        max-width: 40px;
    }

    .text-box-desc {
        font-size: 13px;
        padding-bottom: 10px;
    }

    .last-time {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .last-time span {
        padding: 5px 15px;
        font-size: 10px;
    }

    .smallSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .smallSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pro-name {
        font-size: 17px;
        padding-bottom: 5px;
    }

    .campaign-section {
        padding-top: 0;
        font-size: 12px;
    }

    .campaign-text {
        top: 118px;
        left: -55px;
    }

    .price-box {
        padding-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .text-box-title {
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        padding-bottom: 10px;
    }

    .text-box-title img {
        max-width: 40px;
    }

    .text-box-desc {
        font-size: 12px;
        padding-bottom: 13px;
    }

    .last-time {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .smallSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .smallSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 992px) {
    .campaign-title {
        font-size: 40px;
    }

    .smallSwiper {
        display: none;
    }

    .compaign-box {
        display: flex;
    }

    .img-box,
    .text-box {
        width: 100%;
    }

    .img-box {
        width: 100%;
    }

    .campaign-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .last-time {
        display: flex;
        flex-direction: row;
    }

    .campaign-text {
        top: 42%;
        left: -28%;
    }

    .text-box-title {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 5px;
    }

    .text-box-title img {
        max-width: 29px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .campaign-title {
        font-size: 30px;
    }

    .iconSwiper .swiper-slide {
        padding: 20px 0;
    }

    .text-box {
        padding: 10px 20px;
    }

    .text-box-title {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .text-box-desc {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .pro-name {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .compaign-box {
        display: flex;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .compaign-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .campaign-title {
        font-size: 22px;
        padding-bottom: 10px;
    }

    @media (max-width: 576px) {
        .compaign-box {
            display: block;
            padding: 10px;
        }

        .img-box,
        .text-box {
            width: 100%;
            margin-bottom: 15px;
        }

        .img-box img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .text-box {
            font-size: 14px;
        }

        .price-box {
            font-size: 16px;
        }

        .campaign-img {
            width: 100%;
            max-width: 200px;
            max-height: 200px;
            height: auto;
            display: block;
            margin-right: auto;
            margin-left: auto;
        }
    }
}

@media (max-width: 375px) {
    .campaign-title {
        font-size: 17px;
    }
}
/* CAMPAIGN END */

.home-products-section {
    padding-top: 50px;
    position: relative;
}

.home-products-section:before {
    position: absolute;
    content: "";
    background-image: url(https://demo4.dijitalcicekci.com/front/images/kenarcicek.png);
    width: 150px;
    height: 285px;
    right: 0;
    top: 0;
}


@media (max-width: 768px) {
    .home-products-section {
        padding-top: 10px;
    }
}


/* PRODUCT-BOX START */
.product-image {
    position: relative;
}

.product-image:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    transition: all 0.3s ease;
}

.product-image:before {
    opacity: 1;
}

.product-box {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid var(--color-8);
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-image {
    width: 100%;

    object-fit: cover;
    display: block;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-image::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-box:hover .product-image::before {
    opacity: 1;
}

.pro-content,
.add-to-cart,
.notify-button, 
.detail-view {
    position: relative;
    z-index: 2;
}

.pro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-10);
    padding: 10px 0px 0px 0px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.pro-box-title {
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: var(--color-3);
    padding-bottom: 15px;
}

.pro-span {
    padding-bottom: 25px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 20px;
}

.new-price {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #472439;
}

.old-price {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #c4c4c4;
    text-decoration: line-through;
}

.add-to-cart,
.notify-button { 
    padding: 15px 0px;
    background: var(--color-1);
    color: white;
    font-weight: 300;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
    width: 100%;
    opacity: 0;
    border: none;
    transform: translateY(45px); 
    bottom: 20px;
    position: absolute;
}

.notify-button:hover {
    color: #fff;
} 

.add-to-cart i,
.notify-button i { 
    color: white;
}

.product-box:hover .add-to-cart,
.product-box:hover .notify-button {
    bottom: 0px;
    opacity: 1;
    transform: translateY(0px);
}

.detail-view {
    position: absolute;
    left: -100%;
    bottom: 0px;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    background-color: transparent;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    gap: 7px;
    align-items: center;
}

.product-box:hover .detail-view {
    left: 5px;
    opacity: 1;
}

.detail-view i {
    font-size: 10px;
}

.sold-button {
    background-color: var(--color-3);
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sold-button:hover {
    background-color: #fff;
    color: var(--color-3);
}

/* Zil ikonu sadece hover durumunda sallansın */
.sold-button:hover i {
    animation: shake .5s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* @keyframes shake animasyonu */
@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}



/* Satırda 4 ürün varsa */
.discount-text {
    position: absolute;
    top: 4%;
    left: 5%;
    background-color: var(--color-4);
    color: #fff;
    padding: 6px 25px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 100;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.discount-text:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #fff;
    color: var(--color-4);
    top: -100%;
    left: 0;
    z-index: -1;
    transition: 0.3s;
}

.discount-text:hover {
    color: var(--color-4);
}

.discount-text:hover:before {
    top: 0;
}

.discount-text:hover:after {
    top: 0;
}

.new-product {
    position: absolute;
    top: 6%;
    left: 5%;
    background-color: var(--color-3);
    color: #fff;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.new-product:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #fff;
    color: var(--color-3);
    top: -100%;
    left: 0;
    z-index: -1;
    transition: 0.3s;
}

.new-product:hover {
    color: var(--color-3);
}

.new-product:hover:before {
    top: 0;
}

.new-product:hover:after {
    top: 0;
}

@media (max-width: 1200px) {
    .price-section {
        gap: 20px;
    }

    .old-price,
    .new-price {
        font-size: 18px;
        /* padding-bottom: 5px; */
    }
}

@media (max-width: 460px) {
    .price-section {
        gap: 10px;
    }

    .old-price {
        font-size: 12px;
    }

    .pro-box-title {
        font-size: 13px;
    }

    .new-product {
        padding: 5px 15px;
        font-size: 8px;
    }

    .discount-text {
        padding: 5px 15px;
        font-size: 10px;
    }
}

/* PRODUCT-BOX END */

/* COMMENT START */
.comment-section {
    position: relative;
    margin-bottom: 100px;
}

.commen-first {
    width: 100%;
    max-width: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.comment-desc {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #807373;
    margin-bottom: 10px;
    width: 100%;
    max-width: none;
}

.commen-first img {
    width: 100%;
    height: auto;
    max-width: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.comment-prev,
.comment-next {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 99999;
}

.comment-prev {
    left: 16%;
}

.comment-next {
    right: 16%;
}

.comment-prev i,
.comment-next i {
    font-size: 24px;
    color: #807373;
}

.commentSwiper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.commentSwiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 10px;
}

.leaf-01,
.leaf-02,
.leaf-03 {
    position: absolute;
    width: 100px;
    height: auto;
}

.leaf-01 {
    position: absolute;
    bottom: -5px;
    left: -5%;
    width: 200px;
}

.leaf-02 {
    top: -50px;
    right: -5%;
    width: 175px;
}

.leaf-03 {
    bottom: -20px;
    right: -5%;
    width: 175px;
}

.area {
    position: relative;
    padding: 30px 0;
    width: 100%;
}

@media (max-width: 1200px) {
    .leaf-01 {
        left: 5%;
    }

    .leaf-02,
    .leaf-03 {
        right: 5%;
    }
}

@media (max-width: 1024px) {
    .leaf-01 {
        left: -3%;
    }

    .leaf-02,
    .leaf-03 {
        right: -2%;
    }
}

@media (max-width: 992px) {
    .leaf-01,
    .leaf-02,
    .leaf-03 {
        display: none;
    }

    .comment-prev,
    .comment-next {
        position: absolute;
        top: 90%;
        transform: translateY(-50%);
        z-index: 99999;
    }

    .comment-prev {
        left: 45%;
    }

    .comment-next {
        right: 45%;
    }
}

@media (max-width: 576px) {
    .comment-section {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
    }

    .comment-prev,
    .comment-next {
        position: absolute;
        top: 90%;
        transform: translateY(-50%);
        z-index: 99999;
    }

    .comment-prev {
        left: 40%;
    }

    .comment-next {
        right: 40%;
    }
}

@media (max-width: 820px) {
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
    .comment-desc {
        font-size: 15px;
    }
}
/* COMMENT END */

/* DISCOUNTED START */
.discounted-section {
    background-color: var(--color-6);
    padding: 80px 0;
}

.discounted-section .last-row {
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    font-size: 35px;
    color: var(--color-3);
    text-align: center;
    margin-bottom: 60px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Çizginin başlığa olan mesafesi */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--color-3);
}

@media (max-width: 820px) {
    .home-blog-section .section-title {
        margin-bottom: 25px;
    }
}

/* DISCOUNTED END */

/* CTA-AREA START */
.cta-section {
    padding-top: 250px;
    margin-top: -265px;
    background-color: white;
}

.cta-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: white;
    padding: 70px;
}

.cta-title {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: solid 2px var(--color-1);
    color: var(--color-1);
}

.cta-title span {
    display: block;
    font-size: 38px;
    font-weight: 400;
}

.cta-btn {
    display: inline;
    border: 1px solid var(--color-1);
    border-radius: 30px;
    padding: 10px 50px;
    color: var(--color-1);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--color-1);
    color: #fff;
}

@media (max-width: 992px) {
    .cta-title {
        font-size: 35px;
        border: none;
    }

    .cta-title span {
        font-size: 28px;
        padding: 25px 0 10px 0;
    }

    .cta-btn {
        font-size: 25px;
    }
}

@media (max-width: 820px) {
    .cta-title {
        font-size: 30px;
        border: none;
    }

    .cta-title span {
        font-size: 23px;
        padding: 25px 0 5px 0;
    }

    .cta-btn {
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .cta-area {
        padding: 50px 20px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 5px 30px;
    }

    .cta-title {
        font-size: 21px;
        border: none;
        padding-bottom: 10px;
    }

    .cta-title span {
        font-size: 14px;
        padding: 15px 0 0px 0;
    }
}

/* CTA-AREA END */

/* FOOTER START */
/* FOOTER-TOP START */
footer {
    padding: 60px 0 30px 0;
}

.footer-desc {
    display: block;
    padding-top: 15px;
    color: #adadb5;
}

.footer-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-1);
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-1);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-box {
    padding-bottom: 50px;
}

.footer-box ul li {
    /* max-width: 200px; */
    text-wrap: wrap;
    padding-bottom: 8px;
    gap: 10px;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}

.footer-box ul li a {
    font-size: 15px;
    color: #adadb5;
}

.footer-box ul li a:hover {
    color: #000000;
}

.footer-logo img{
    width: auto;
    height: auto;
    object-fit: cover;
    max-height: 100px;
}

@media (max-width: 992px) {
    .footer-desc {
        padding-bottom: 30px;
        text-align: center;
    }

    .footer-logo img {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 0;
    }

    .footer-desc {
        padding-bottom: 10px;
    }
}
/* FOOTER-TOP END */

/* FOOTER-BOTTOM START */
.footer-bottom .row {
    border-top: 1px solid #c4c4c4;
    padding-top: 20px;
    color: #adadb5;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.social {
    color: #adadb5;
    border: solid 1px #adadb5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 8px;
    transition: all .3s ease;
}

.social:hover{
    color: #000;
    border-color: #000;
}


.footer-mail {
    display: flex;
    justify-content: flex-end;
    color: #adadb5;
}

@media (max-width: 576px) {
    .footer-bottom {
        padding-bottom: 100px;
    }

    .footer-mail {
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }
}
/* FOOTER-TOP END */
/* FOOTER END */

/* CATEGORY.PHP START */
.category-section {
    position: relative;
}

.category-section:before {
    position: absolute;
    content: "";
    background-image: url(https://demo4.dijitalcicekci.com/front/images/kenarcicek.png);
    width: 150px;
    height: 285px;
    right: 0;
    top: 0;
}

.page-header-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header {
    padding: 50px 0;
}

.page-title {
    font-size: 25px;
    color: var(--color-3);
    text-align: center;
}

.category-dropdown {
    position: relative;
}

.custom-select-container {
    position: relative;
}

.custom-dropdown {
    position: relative;
    display: flex;
}

.custom-dropdown select{
    background: transparent;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px; 
    background: transparent;
    cursor: pointer;
}

.selected-option {
    background-color: transparent;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: var(--color-4);
}

.arrow-icon.up {
    transform: rotate(180deg); /* Yukarı döndürme */
}

.dropdown-options {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 4px;
    z-index: 1000;
    width: 100%;
}

.option {
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    display: block;
}

.option:hover {
    background-color: transparent;
}

@media (max-width: 992px) {
    .selected-option {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .page-header-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 5px;
    }

    .page-header {
        padding: 20px 0;
    }

    .page-p,
    .category-form {
        width: 100%;
        margin: 5px 0;
    }

    .category-form {
        display: flex;
        justify-content: center; /* Formu ortala */
        width: 100%; /* Formun tam genişlikte olmasını sağla */
    }

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

@media (max-width: 576px) {
    .page-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 0;
    }

    .page-p {
        display: none;
    }

    .page-header {
        padding: 5px 0;
    }

    .form-select {
        width: 90%;
        margin: 0;
    }
}
/* CATEGORY.PHP END */

/* Slider ana görünüm */
.product-section .mySwiper2 {
    width: 100%;
    height: auto;
}

.product-section .mySwiper2 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.product-section .mySwiper2 img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-section .mySwiper {
    margin-top: 20px;
    height: auto;
}

.product-section .mySwiper .swiper-slide {
    width: 100px;
    height: auto;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.product-section .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-section .mySwiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* PRODUCT START */
.product-title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 20px;
    color: var(--color-3);
    margin: 0;
}

.product-p {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 20px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.delivery-location {
    margin: 20px 0;
    position: relative;
    width: 100%;
    box-shadow: 0 5px 10px -8px var(--color-4);
    border: none;
    padding: 10px;
    appearance: none;
}

.delivery-location select{
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px; 
    background: transparent;
    cursor: pointer;
    width: 100%;
    appearance: none;
}

select:focus {
    outline: none;
    box-shadow: 0 0 8px var(--color-4);
}

.single-arrow {
    position: absolute;
    font-size: 25px;
    top: 26%;
    right: 3%;
}

.pro-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 10px -8px var(--color-4);
}

.single-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-new-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-amount {
    font-size: 40px;
    font-weight: 400;
}

.new-span-box {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 500;
}

.single-old-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: gray;
}

.old-amount {
    font-size: 40px;
    font-weight: 400;
    text-decoration: line-through;
}

.old-span-box {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.sold-out-text {
    font-size: 30px;
    font-weight: 500;
    text-decoration: line-through;
    color: gray;
}

.product-btn {
    background-color: var(--color-3);
    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
    border: 2px solid var(--color-3);
    transition: all 0.3s ease;
    display: inline-block;
}

.product-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.product-btn:hover {
    background-color: #fff;
    color: var(--color-3);
}

.product-btn:hover i {
    transform: translateX(5px);
    color: var(--color-8);
}

.product-icon-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 10px -8px var(--color-4);
    padding: 20px;
    margin-bottom: 25px;
}

.pro-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-icon-box:nth-child(2) i {
    font-size: 40px;
    color: var(--color-1);
}

.pro-icon-box:nth-child(3) i {
    font-size: 40px;
    color: var(--color-1);
}

.flower {
    max-width: 80px;
    width: 100%;
}

.payment-info {
    box-shadow: 0 5px 10px -8px var(--color-4);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.payment-title {
    font-size: 17px;
    font-weight: 600;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.payment {
    max-width: 300px;
    width: 100%;
    padding-block: 20px;
}

.paymen-info span {
    color: var(--color-1);
}

.pro-comments {
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 10px -8px var(--color-4);
}

.pro-comment {
    font-size: 17px;
    padding-bottom: 10px;
}

.pro-comment-form input[type="text"],
.pro-comment-form textarea {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: none;
}

.pro-comment-form textarea {
    resize: vertical;
    border: none;
    margin-block: 2rem;
}

.pro-comment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.no-stock-message {
    background-color: red;
    color: #fff;
    padding: 10px;
    margin-bottom: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
}

.no-stock-message:hover {
    background-color: red;
    color: #fff;
}

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

.overlay-title {
    border-bottom: 1px solid #000;
    padding: 20px 30px 10px 30px;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.notification-form-body,
.notification-form-bottom {
    padding: 10px 30px;
}

.notification-form-body {
    border-bottom: 1px solid #000;
    z-index: 9999;
}

.notification-form-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding: 20px;
}

.notification-form-bottom button {
    border: none;
    padding: 10px 25px;
}

.notification-form-bottom button:first-child {
    background-color: #000;
    color: #fff;
}

.notification-form-bottom button:last-child {
    background-color: var(--color-5);
    color: #fff;
}

.form-robo {
    width: 100%;
    object-fit: cover;
}

.notification-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 35%;
}

.notification-form input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.notification-form button {
    padding: 10px 20px;
    cursor: pointer;
}

.pro-desc {
    font-size: 15px;
    padding-bottom: 0px;
    margin: 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
}

.feature-title {
    min-width: 120px;
    font-weight: bold;
    color: var(--color-3);
    position: relative;
    padding-right: 5px;
    font-size: 15px;
}

.feature-title::after {
    content: ":";
    position: absolute;
    right: 5px;
}

.feature-item span:last-child {
    padding-left: 3px;
}

.box-right {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .product-icon-list {
        padding: 10px;
    }

    .flower {
        max-width: 65px;
    }

    .pro-icon-box:nth-child(2) i {
        font-size: 25px;
        color: var(--color-1);
    }

    .pro-icon-box:nth-child(3) i {
        font-size: 25px;
        color: var(--color-8);
    }
}

@media (max-width: 992px) {
    .pro-icon-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .box-right {
        display: flex;
        flex-direction: row;
        gap: 5px;
        font-size: 12px;
    }

    .flower {
        max-width: 32px;
    }

    .product-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .new-amount,
    .old-amount {
        font-size: 25px;
    }

    .new-span-box {
        font-size: 10px;
    }

    select {
        font-size: 12px;
    }

    .payment-info span {
        font-size: 12px;
    }

    .product-p {
        padding: 0 10px 20px 10px;
    }
}

@media (max-width: 820px) {
    .no-stock-message {
        font-size: 12px;
        margin-top: 35px;
    }

    .product-section {
        padding-top: 0;
    }

    .new-amount {
        font-size: 30px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .product-btn {
        font-size: 15px;
    }

    .single-new-price {
        gap: 5px;
    }

    .product-btn {
        padding: 5px 18px;
        font-size: 10px;
        border-radius: 5px;
    }

    .box-right {
        font-size: 8px;
    }

    .pro-icon-box:nth-child(2) i {
        font-size: 20px;
        color: var(--color-1);
    }

    .pro-icon-box:nth-child(3) i {
        font-size: 20px;
        color: var(--color-8);
    }

    .product-p {
        font-size: 20px;
        padding-block: 10px;
    }

    .content-wrapper {
        margin-bottom: 19px;
    }

    .new-amount {
        font-size: 25px;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .pro-comment-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 20px;
    }

    .no-stock-message {
        font-size: 9px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .sold-out-text {
        font-size: 20px;
    }

    .product-btn {
        font-size: 15px;
    }
}

/* stars */
.rate {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    height: 40px;
    margin-bottom: 1rem;
}

.rate input {
    display: none;
}

.rate:not(:checked) > label {
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked) > label:before {
    content: "★ ";
}

.rate > input:checked ~ label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.star-color {
    color: #ffc700;
}

.comment-robo {
    width: 300px;
}
/* stars END*/

.similar-pro-container {
    background-color: var(--color-6);
    padding: 50px 0;
}

.similar-pro-container .last-row {
    margin-bottom: 50px;
}

.similar-pro-title {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 15px;
}

.similar-pro-title::before {
    content: "";
    position: absolute;
    width: 30%;
    padding: 2px;
    background-color: var(--color-8);
    top: -5px;
    left: 35%;
}

.similar-pro-title::after {
    content: "";
    position: absolute;
    width: 30%;
    padding: 2px;
    background-color: var(--color-8);
    bottom: -5px;
    left: 35%;
}
/* PRODUCT END */

/* HOMEBLOGS-SECTION START */
.home-blog-section {
    position: relative;
}

.blog-box {
    display: block;
    padding: 20px;
    background-color: var(--color-6);
    margin-bottom: 50px;
}

.blog-img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.blog-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-title {
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 10px;
    color: var(--color-3);
}

.blog-desc {
    padding-bottom: 30px;
    font-size: 14px;
    color: var(--color-3);
}

.blog-btn,
.blog-btn button {
    border: none;
    background-color: #fff;
    border: 2px solid var(--color-8);
    padding: 5px 30px;
    color: var(--color-3);
    display: inline-flex;
    gap: 15px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.blog-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-5);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

.blog-btn:hover {
    color: #fff;
}

.blog-box:hover .blog-btn:before {
    transform: translateX(0);
}

.blog-btn button {
    border: none;
    z-index: 1;
    background-color: transparent;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 85%;
    transform: translateY(-50%);
    z-index: 9;
    background-color: var(--color-3);
    padding: 10px 15px;
}

.custom-prev {
    left: 45%;
}

.custom-next {
    right: 44%;
}

.custom-prev i,
.custom-next i {
    font-size: 24px;
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

/* .homeBlogs .swiper-slide {
    width: auto;
    flex-shrink: 0;
} */

/* Responsive ayarlar */
@media (max-width: 1200px) {
    .custom-prev {
        left: 43%;
    }

    .custom-next {
        right: 43%;
    }

    .blog-title {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .custom-prev,
    .custom-next {
        top: 80%;
        font-size: 20px;
    }

    .custom-prev::after,
    .custom-next::after {
        padding: 10px;
    }

    .custom-prev {
        left: 41%;
    }

    .custom-next {
        right: 41%;
    }
}

@media (max-width: 768px) {
    .custom-prev,
    .custom-next {
        top: 85%;
        font-size: 20px;
    }

    .custom-prev {
        left: 42%;
    }

    .custom-next {
        right: 41%;
    }

    .blog-box {
        padding: 10px;
    }

    .blog-desc {
        padding-bottom: 20px;
    }

    .blog-btn {
        padding: 3px 30px;
    }
}

@media (max-width: 576px) {
    .custom-prev,
    .custom-next {
        font-size: 18px;
    }

    .custom-prev::after,
    .custom-next::after {
        padding: 8px;
    }

    .custom-prev {
        left: 37%;
    }

    .custom-next {
        right: 37%;
    }
}

@media (max-width: 430px) {
    .custom-prev,
    .custom-next {
        font-size: 18px;
    }

    .custom-prev::after,
    .custom-next::after {
        padding: 8px;
    }

    .custom-prev {
        left: 35%;
    }

    .custom-next {
        right: 35%;
    }

    .blog-title {
        font-size: 14px;
    }

    .blog-desc {
        font-size: 10px;
    }

    .blog-btn {
        padding: 2px 10px;
        font-size: 13px;
        display: flex;
        gap: 10px;
    }
}

/* HOMEBLOGS-SECTION END */

/* TEMPLATE-BLOGS START */
.blog-section {
    margin-bottom: 150px;
}

.blog-detail-section {
    padding-top: 0;
}

.other-names span {
    color: #000;
    font-weight: bold;
    margin-right: 5px;
}

.blog-detail-box {
    padding: 10px 0;
}

.blog-detail-title {
    color: var(--color-3);
    font-weight: bold;
    font-size: 20px;
}

.aside-title {
    font-size: 22px;
    font-weight: 500;
}

/* TEMPLATE-BLOGS END */

/* ABOUT-US-SECTION START */
.about-us-section {
    padding: 0 0 80px 0;
}

.about-content-wrapper {
    margin-top: 0;
    padding-top: 0;
}

/* ABOUT-US-SECTION END */

/* CONTACT START */
.contact-section {
    padding: 30px 0;
}

.contact-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--color-3);
    position: relative;
}

.contact-title::after {
    content: "";
    width: 10%;
    padding: 1px;
    background-color: #bf5695;
    position: absolute;
    bottom: 0;
    left: 10%;
}

.contact-right {
    padding-bottom: 50px;
}

.contact-right ul {
    background-color: #fff;
    padding-block: 5px;
    border-radius: 20px;
}

.contact-right ul li a {
    padding-bottom: 10px;
    font-size: 16px;
    color: #000;
    display: block;
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
}

.contact-right ul li a span {
    font-weight: 500;
    font-size: 18px;
    color: var(--color-3);
}

.contact-right ul i {
    font-size: 20px;
}

.contact-icons {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    border-radius: 20px;
}

.contact-icons a {
    color: #adadb5;
    border: solid 1px #adadb5;
    min-width: 30px;
    min-height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 5px;
    transition: all 0.3s ease;
}

.contact-icons a:hover {
    color: #000;
    border-color: #000;
}

.contact-icons i {
    font-size: 23px;
}

.contact-page-form,
.contact-location {
    box-shadow: 0 0 10px var(--color-4);
    padding: 30px;
    border-radius: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-title,
.contact-location-title {
    font-size: 30px;
    font-weight: 600;
    padding: 5px 0;
}

iframe {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 6px 10px;
    border: solid 1px #d4d4d4;
    margin-bottom: 15px;
    border-radius: 2px;
    outline: none;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.contact-btn a {
    background-color: var(--color-1);
    display: inline-flex;
    padding: 10px 40px;
    border-radius: 5px;
    max-width: 150px;
    width: 100%;
    color: #fff;
    text-align: center;
}

.contact-btn a:hover {
    color: var(--color-1);
}

.contact-robo {
    max-width: 200px;
    width: 100%;
    margin-bottom: 15px;
}

.contact-location iframe {
    margin-top: 45px;
}

.checkbox-label {
    padding-bottom: 80px;
}

.checkbox-label a {
    color: var(--color-4);
    font-weight: 500;
}

@media (max-width: 992px) {
    .contact-btn {
        display: flex;
    }

    .contact-title {
        font-size: 23px;
    }

    .contact-left ul li a {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .contact-desc {
        font-size: 20px;
    }
}

/* CONTACT END */

/* 404 START */
.not-found-section {
    padding: 80px 0 150px 0;
}

.not-found-section .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-text {
    font-size: 100px;
    font-weight: 500;
    color: var(--color-3);
}

.error-desc {
    font-size: 20px;
    text-align: center;
    padding-bottom: 50px;
}

.error-title {
    font-size: 35px;
    font-weight: 500;
    padding-bottom: 15px;
    color: var(--color-3);
}

.error-form input,
.error-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: solid 1px #d4d4d4;
    margin-bottom: 15px;
    border-radius: 2px;
    outline: none;
}

.error-form input:focus {
    border-color: #271721;
}

.btn-404 {
    background-color: var(--color-5);
    color: var(--color-3);
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.btn-404:hover {
    background-color: var(--color-3);
    color: var(--color-5);
}

@media (max-width: 576px) {
    .error-box {
        margin-top: -50px;
    }

    .error-text {
        font-size: 75px;
    }
}
/* 404 END */

.viewed-products-section .discount-text {
    top: -287%;
}

/* WhatsApp START*/
.wp-img {
    color: #fff;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.mypage-alo-ph-circle {
    width: 90px;
    height: 90px;
    top: 12px;
    left: 12px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    opacity: 0.5;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.mypage-alo-ph-circle-fill {
    width: 60px;
    height: 60px;
    top: 28px;
    left: 28px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.4 !important;
}

.mypage-alo-ph-img-circle {
    width: 30px;
    height: 30px;
    top: 43px;
    left: 43px;
    position: absolute;
    background: rgba(30, 30, 30, 0.1)
        url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fweb-sitesine-whatsapp-butonu-ekleme%2F&psig=AOvVaw24o_fVXdJxPaz-ZYw6fVc_&ust=1728734068863000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCKi3trKihokDFQAAAAAdAAAAABAE)
        no-repeat center center;
    background-size: 100%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-size: 100%;
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.header .container {
    position: relative;
}

.mypage-alo-phone {
    position: absolute;
    top: -10px;
    right: 0px;
    z-index: 9999999;
}

.mypage-alo-ph-circle {
    border-color: #43b91e;
}

.mypage-alo-ph-circle-fill {
    background-color: #43b91e;
}

.mypage-alo-ph-img-circle {
    background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle {
    border-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle-fill {
    background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-img-circle {
    background-color: #43b91e;
}

.hotlinemp {
    position: fixed;
    right: 139px;
    bottom: 130px;
    z-index: 9999;
}

@media (max-width: 992px) {
    .hotlinemp {
        display: none;
    }
}
/* WHATSAPP END*/

/* FOOTER-STICKY START*/
.footer-sticky-bar {
    display: block;
    border-radius: 32px 32px 0px 0px;
    padding: 15px 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 950px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    z-index: 9999999;
    box-shadow: -7px -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .footer-sticky-bar {
        width: 100%; /* Küçük ekranlarda tam genişlik */
        left: 0;
        transform: none;
        z-index: 99;
    }
}

.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: 12px;
    font-weight: 500;
    color: var(--color-3);
}

.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: 23px;
    margin-bottom: 3px;
    color: var(--color-3);
}

@media (min-width: 820px) {
    .footer-sticky-bar {
        display: none;
    }
}

.footer-sticky-bar .sticky-area .sticky-box svg {
    margin-bottom: 4px;
    width: 24px;
    height: 24px;
}

.sticky-box i {
    color: var(--color-6);
}
/* FOOTER-STICKY END*/

.product-img-area {
    position: relative;
}

.product-img-area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.product-box:hover .product-img-area::before {
    opacity: 1;
}

/* FOOTER STICKY SEARCH START */
.footer-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.footer-search-modal {
    display: none;
}

.footer-search-modal.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    z-index: 9999999999999999999999999999999999999;
}



.footer-search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    text-align: center;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow: hidden;
}

.footer-close {
    align-self: flex-end;
    margin-bottom: auto;
}

.footer-close i {
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 0px;
}

.footer-text {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.footer-form input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    min-width: 300px;
}


.footer-search-icon {
    position: absolute;
    left: 87%;
    color: var(--color-3);
}
/* FOOTER STICKY SEARCH END */

.breadcrumbs {
    background-color: #f8f8f8;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
}

.breadcrumbs ul li a {
    color: #929da8;
    text-decoration: none;
    font-weight: 600;
    padding-right: 10px;
}

.breadcrumbs ul li a::before {
    content: ">";
    padding-right: 5px;
    margin-right: 8px;
}

.breadcrumbs ul li:first-child a::before {
    content: none;
}

.breadcrumbs ul li:last-child {
    font-weight: 700;
    color: #929da8;
}

@media (max-width: 576px) {
    .breadcrumbs ul {
        padding-inline: 10px;
    }

    .breadcrumbs ul li a {
        font-size: 9px;
    }
}

/* Swiper kapsayıcıları arasındaki boşlukları sıfırlayın */
.home-slider-section .swiper,
.home-slider-section .swiper-wrapper,
.home-slider-section .swiper-slide {
    margin: 0;
    padding: 0;
}

/* Swiper slide'larının tüm genişliği kapsaması için */
.home-slider-section .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

/* Arka plan overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Görünürlüğü kontrol eden sınıf */
.visible {
    display: block;
}

/* Bildirim formu */
.notification-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 35%;
    padding: 20px;
    border-radius: 8px;
}

/* Çarpı butonu */
.close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background-color: red;
    padding: 10px 25px;
}

.notification-form input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.notification-form button {
    padding: 10px 20px;
    cursor: pointer;
}


.category-section .last-row > div {
    margin-bottom: 50px;
}


.compaign-box .img-box img {
    min-width: 100%;
    min-height: 100%;
}

section.products-month {
    margin-bottom: -50px;
}

.right-list .menu-list li i {
    display: none;
}

.breadcrumb-area{
    padding: 0;
}

.breadcrumbs {
    background-color: inherit;
    padding:0px;
}



.head-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.head-area h1{
    margin: 0;
}

.list-head {
    padding: 20px 0px;
}


.product-box{
    margin-bottom: 30px;
}



section.products {
    padding: 0px 0px;
}

.products {
    margin-bottom: 90px;
}


.easy-autocomplete.eac-square {
    width: 100% !important;
}



.desktop-search {
    position: relative;
    right: 35px !important;
}



.easy-autocomplete.eac-square input {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
}


img.steps-img {
    max-width: 40px;
}

.icon-box:hover .steps-img:nth-child(1) {
    display: none;
}
.icon-box .steps-img:nth-child(2) {
    display: none;
}

.icon-box:hover .steps-img:nth-child(2) {
    display: block;
}



.signature-img{
    max-width: 130px;
}


.signature-area{

    display: flex;
    justify-content: center;
}




.footer-bottom-text{
    display: flex;
    justify-content: center;
    text-align: center;
}

.header-mobile-bottom{
    display: none;
}
@media (max-width: 992px) {
    .box.login-form {
        margin-bottom: 85px;
    }
    .home-images img {
        width: 100%;
        border-radius: 0 !important;
        padding: 10px;
    }
    .footer-search-modal #headerProductSearchBox {
        min-width: 314px;
    }
    .header-mobile-bottom{
        display: flex;
    }
    
.header-mobile-bottom .search-area {
    width: 100%;
    margin-right: 20px;
    box-shadow: none;
    background: #F8F8F8;
    border: 1px solid #F8F8F8;
    border-radius: 9px;
}

.header-mobile-bottom .search-area .input-text {
    background: #F8F8F8;
}

form.search-form {
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.easy-autocomplete.eac-square input {
    border: none;
}
.header-mobile-bottom {

    padding: 10px 20px;
}
.easy-autocomplete input{
    box-shadow: none !important;
}

}



.swiper-button-next, .swiper-button-prev {
    background-image: unset !important;
}



.product-desc {
    padding: 20px;
}


.box.order-area.order-create.mobile-order-1{
    background: none !important;
    box-shadow: none !important;
}

.order-now-title {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0px;
    color: var(--color-3);
}

.modal-menu .submenu li i {
    display: none;
}




.footer-modal-content .search-img {
    position: absolute;
    right: 5%;
}


body.modal-active {
    overflow: hidden; /* Kaydırmayı tamamen devre dışı bırakır */
}

@media (max-width: 992px) {
    .list-head .dropdown {
        float: none;
        text-align: center;
        display: flex;
        align-items: center;
        margin: 0px;
    }
    
    .head-area .count {
        display: none;
    }


    .custom-prev, .custom-next{
        top: 100%;
    }
    }


    section.blog-detail-page {
        padding: 0;
    }

    .home-blog-section {
        position: relative;
        padding: 0;
    }




.detail-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px) {
    .detail-list-title {
        padding: 30px 0px 0px 0px;
    }
}

section.seo-text {
    margin-top: -146px;
}


.home-blog-section {
    position: relative;
    padding: 0;
    margin-bottom: 80px;
    margin-top: 70px;
}

section.standart.p80 {
    padding: 0;
}

section.breadcrumb-area {
    margin: 0;
    padding: 0;
    background: inherit;
    border: none;
}

.breadcrumbs .breadcrumb {
    padding: 0;
}

section.blog-detail-page {
    padding: 30px 0px;
}

.breadss {
    padding: 20px 0px 55px 0px;
}



.product-slider-area.col-lg-12.col-md-6.col-sm-12.col-12.swiper-box {
    padding: 10px;
}


.bread-product{
    padding: 20px 0px 30px 0px;
}

.modal-menu li i:not(:nth-of-type(1)) {
    display: none;
}


.submenu{
    display: block !important;
}



.number {
    position: absolute;
    background-color: var(--color-1);
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: 8px;
    right: 0px;
    
}

.header-right-icons,.header-icon{
    position: relative;
}


  .contact-box {
    color: black;
    height: 250px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

  .contact-box-title {
    font-size: 22px;
    margin: 10px 0;
    font-weight: bold;
}
.contact-box i {
    font-size: 32px;
    color: #472439;
}

@media (max-width: 992px) {
    .contact-box {
        color: black;
        height: 148px;
        display: flex    ;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        text-align: center;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        font-size: 12px;
        padding: 3px;
    }
    
}

@media (min-width: 992px) {
    .contact-bottom-form-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
  
}
.submit-btns {
    background: #42102e;
    padding: 15px 60px;
    border-radius: 7px;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid #42102e;
} 

.submit-btns:hover {
    background: transparent;
    color: #42102e;
} 

@media (max-width: 992px) {
    .contact-bottom-form-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        
        
    }

    .icon-box *{
        font-size: 12px;
    }
    .footer-bottom .row {

        gap: 10px;
    }
    .price .order-button {
        background: #472439 !important;
        color: #fff !important;
        font-size: 17px !important;
        border-radius: 5px !important;
        padding: 19px 40px !important;
        min-width: 169px !important;
        margin-left: 0 !important;
        position: relative !important;
        border: none !important;
        outline: none !important;
        display: flex !important;
        cursor: pointer !important;
        align-items: center !important;
    }
}

.contact-form input, .contact-form textarea {

    border-radius: 5px;
}

.pro-icon-box i {
    font-size: 40px;
    color: var(--color-1);
}

@media (max-width: 992px) {
    .pro-icon-box i {
        font-size: 20px;
    }
}



.list-head{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;  
    display: flex; 
    justify-content: center; 
    align-items: center;
}

a.footer-logo {
    display: flex
;
    justify-content: center;
}


.simple-btn {
    background: var(--color-1);
    padding: 15px 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-1);
}

.simple-btn:hover {
    background: transparent;
    color: var(--color-1);
}




/* Modal ortalama ve sabitleme */
#productRegisterModal {
    background-color: rgba(0, 0, 0, 0.5); /* Arka plan opaklığı */
}

/* Sayfa kaydırmayı engelle */
body.modal-open {
    overflow: hidden;
}

h5#productRegisterModalLabel {
    margin: 0;
    padding: 0;
}

.force-bs-modal .modal-header .close {
    margin: 0;
    color: black;
    padding: 0;
    position: unset;
    font-size: 25px;
}

.force-bs-modal .modal-header {
    align-items: center;
    padding: 10px 20px;
    margin: 0;
}

.modal-body .form-group {
    margin-bottom: 15px;
}

.force-bs-modal .modal-footer {
    justify-content: space-between;
}

input.btn.cbtn{
    background: var(--color-1);
}




.category-item img {
    padding: 9px;
    border-radius: 50%;
    border: 3px solid var(--color-1);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px var(--color-1);
    height: auto;
    width: 150px;
    height: 150px;
}
  
  .category-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }



/* CATEGORY - SLIDER */
.category-item {
    text-align: center;
}

.category-item-name {
    margin-top: 10px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.category-item:hover .category-item-name {
    color: var(--color-1);
}

.category-slider {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

.category-slider .swiper-button-prev-category,
.category-slider .swiper-button-next-category {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    color: var(--color-1);
    z-index: 1;
    font-size: 24px;
}

.category-slider .swiper-button-next-category {
    right: -25px;
}

.category-slider .swiper-button-prev-category {
    left: -25px;
}

@media (max-width: 1400px) {
    .category-slider .swiper-button-prev-category {
        left: 10px;
    }
    .category-slider .swiper-button-next-category {
        right: 8px;
    }
}

@media (max-width: 1200px) {
    .category-slider .swiper-button-next-category,
    .category-slider .swiper-button-prev-category {
        right: 170px;
        left: 170px;
        top: 225px;
    }
}

@media (max-width: 375px) {
    .category-slider .swiper-button-prev-category {
        left: 160px;
    }
    .category-slider .swiper-button-next-category {
        right: 150px;
    }
}


.swiper.categorySlider.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding: 20px 0px;
}

@media (max-width: 992px) {
    .category-slider .swiper-button-next-category, .category-slider .swiper-button-prev-category {
        top: 350px;
    }
    .category-slider .swiper-button-next-category {
        left: 63%;
    }
    .category-slider .swiper-button-prev-category {
        left: 33%;
    }

    .category-item img {

        width: 100px;
        height: 100px;
    }
}
section.category-slider {
    padding: 30px 0px;
}


.category-item {
    position: relative;
}

@media (min-width: 992px) {
    .category-item::Before {
        position: absolute;
        content: '';
        width: 85px;
        height: 3px;
        border-radius: 50px;
        background: #964fa7;
        bottom: 28px;
    }
}


.product-image-container {
    position: relative;
    width: 100%; /* Görsel boyutuna göre ayarlanabilir */
    overflow: hidden; /* İkinci görsel dışarı taşmasın */
}

.product-image-container img {
    display: block;
    width: 100%; /* Görsellerin tam oturması için */
    transition: opacity 0.5s ease-in-out;
}

.product-image-container .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* İlk başta görünmez */
    transition: opacity 0.5s ease-in-out; /* Geçiş animasyonu */
}

.product-image-container:hover .hover-image {
    opacity: 1; /* Hover sırasında görünecek */
}

.product-image-container:hover .product-image {
    opacity: 0; /* Hover sırasında ana görsel gizlenecek */
}

/* Eğer hover-image yoksa hover animasyonlarını devre dışı bırak */
.product-image-container:not(:has(.hover-image)):hover .product-image {
    opacity: 1; /* İlk görsel görünmeye devam edecek */
}

.product-image-container:not(:has(.hover-image)):hover .hover-image {
    opacity: 0; /* Hover sırasında hover-image etkilenmeyecek */
}


.swiper.categorySlider.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding: 10px 0px 20px 0px;
    margin-top: -28px;
}

.header-ust-bolum {
    display: none;
}
@media (min-width: 992px){
    
.header-ust-bolum {
    display: flex;
    justify-content: space-between;
    background: #8c8787;
    padding: 4px 15px;
    color: white;
}

.header-ust-sag .menu ul {
    display: flex;
    flex-direction: row;
}

.header-ust-sag .menu ul li {
    padding: 0px 10px;
}

header.header-desktop {
    padding: 10px 0px;
}
}

@media (max-width: 992px){
    .footer-box ul li a {
        font-size: 15px;
        color: #adadb5;
        font-size: 12px;
    }
}



    /* footer sticky hemen ara */

    .footer-sticky-bar {
        display: block;
        box-shadow: -7px -4px 20px rgba(0, 0, 0, 0.1);
        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 #fa866f;
    }


    .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 .title {
        font-size: 10px;
        color: #472439;
    }

    .footer-sticky-bar .sticky-area .sticky-box img {
        height: 25px;
        margin-bottom: 4px;
    }

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

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

.login-panel .top .btn-close-panel {
    display: flex;
    top: 0;
    color: black;
    left: 15px;
    top: 15px;
}

.login-panel .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

.login-panel .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}