@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;
}


body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

section {
    padding: 2rem 0;
}

button {
    border: none;
}


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

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

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

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

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


/* HEADER */
/* Header-Desktop */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0px 40px 0;
}

.desktop-search-block,
.modal-search-block {
    display: flex;
    justify-content: center;
    position: relative;
}

.desktop-input,
.modal-input {
    width: 100%;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid var(--color-1);
    padding: 10px 20px;
}

.desktop-search,
.modal-search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    color: var(--color-5);
}

.icon-block {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.logo-item img {
    max-width: 210px;
    width: 100%;
}

.menu-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

nav {
    position: relative;
    padding: 0;
    margin: 0;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin: 0;
    gap: 16px;
}

nav ul li {
    padding: 0 7px;
}

nav ul li a {
    color: #000;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
}

nav ul li a:hover {
    opacity: .8;
    color: #000;
}

.header-input::placeholder {
    color: var(--color-text--variable);
    font-size: 15px;
}

.icon-block {
    display: flex;
    gap: 27px;
    padding: 0 30px;
}

.icon-block a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-1);
    font-size: 13px;
}

.icon-block i {
    font-size: 20px;
}

.all-products-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 5px;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
}

.all-products-link:hover {
    transform: scale(1.1); 
    opacity: .8;
}

.header-bottom {
    /* padding-bottom: 30px; */
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.user-boy {
    font-size: 30px;
    color: var(--color-2);
    margin-right: 10px;
}

nav ul li:nth-child(6) a {
    display: flex;
    align-items: center;
}


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


@media (max-width:1024px) {
    .icon-block {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .icon-block a {
        font-size: 12px;
        padding: 0 4px;
    }
    
    .icon-block i {
        font-size: 15px;
    }

    .user-boy {
        font-size: 25px;
    }

    nav ul {
        gap: 25px;
    }
}

/* Home Slider */
.section-home {
    width: 100%;
    position: relative;
}

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

.home-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

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

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
    z-index: 99999;
}

.slider-button i {
    background-color: var(--color-5);
    color: white;
    padding: 10px;
    font-size: 20px;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-button i.fa-arrow-left {
    position: absolute;
    left: 20px;
    transform: translateX(-50px);
}

.slider-button i.fa-arrow-right {
    position: absolute;
    right: 20px;
    transform: translateX(50px);
}

.slider-button.visible i {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide-content {
    width: 35%;
    padding: 2rem;
    position: absolute;
    top: 20%;
    left: 5%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-title {
    font-size: 33px;
    color: var(--color-1);
    padding-bottom: 15px;
}

.slide-p {
    color: var(--color-1);
    font-size: 23px;
    font-weight: 400;
    padding-bottom: 20px;
}

.slide-button {
    background-color: var(--color-1);
    display: flex;
    max-width: 200px;
    padding: 15px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
    transition: all .3s ease;
}

.slide-button:hover {
    background-color: var(--color-4);
}


.slide-button a {
    color: #fff;
    font-size: 18px;
}


/* Cards-section */
.card {
    background-color: var(--color-1);
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0px;
    min-height: 100%;
    text-align: center;
}


.card-content {
    position: relative;
    z-index: 1; 
}

.card-message {
    content: "Bizimle İletişime Geç";
    position: absolute;
    top: 105%; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-5);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card:hover .card-message {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .slide-content {
        top: 8%;
    }

    .slide-title {
        font-size: 25px;
    }

    .slide-p {
        font-size: 18px;
        margin-bottom: 0;
    }

}


@media (max-width: 1024px) {
    .section-home {
        margin-bottom: 20px;
    }

    .slide-content {
        left: 59px;
        top: 45px;
    }

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

    .slide-p {
        font-size: 15px;
        margin-bottom: 0;
    }

    .section-cards {
        margin-top: 2rem;
    }

    .slide-button a {
        color: #fff;
        font-size: 11px;
    }
    
}

@media (max-width: 992px) {
    .slide-content {
        left: 59px;
        top: 45px;
    }

    .slide-title {
        font-size: 17px;
        padding-bottom: 10px;
    }

    .slide-p {
        font-size: 13px;
    }

    .slide-button {
        max-width: 165px;
        padding: 10px 20px;
        gap: 10px;
    }

    .card {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        top: 17px;
    }

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

    .slide-p {
        font-size: 11px;
    }

    .slider-button {
        display: none;
    }

    .slide-button {
        max-width: 149px;
        padding: 5px 20px;
        gap: 10px;
    }

    .slider-button .slider-button-container {
        display: flex;
    }

    .slider-button i {
        background-color: var(--color-5);
        color: white;
        padding: 10px;
        font-size: 20px;
        cursor: pointer;
        margin: 0;
    }

    .slider-button i.fa-arrow-left {
        left: 340px;
    }

    .slider-button i.fa-arrow-right {
        right: 340px;
    }

    .slide-button a {
        color: #fff;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .phone {
        display: none;
    }

    .slide-content {
        left: 5px;
        top: -6px;
    }

    .slide-title {
        font-size: 11px;
        padding-bottom: 7px;
    }

    .slide-p {
        font-size: 7px;
        padding-bottom: 7px;
        margin-bottom: 0;
    }

    .slide-button {
        max-width: 125px;
        padding: 6px 10px;
        gap: 10px;
    }


    .slide-button a {
        font-size: 6px;
    }
}

@media (max-width: 420px) {
    .slide-content {
        width: 47%;
        top: 5px;
        left: -10px;
    }

    .slide-title {
        font-size: 7px;
    }

    .slide-p {
        font-size: 5px;
    }
}

/* Header Mobile */
.header-mobile {
    display: none;
    padding-block: 16px;
    background-color: #f4f4f4;
}

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

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px;
    border-radius: 31px;
    background: #fff;
    color: var(--color-5);
    padding-inline: 20px;
    border: 1px solid var(--color-5);
}

.search-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #fff;
}

.header-mobile.hidden {
    display: none;
}
/* Modal Left */
.modal-left {
    padding-block: 16px;
    background-color: #f4f4f4;
}

.modal-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-inline: 0;
}

.modal-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 100%;
}

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

.close img {
    max-width: 16px;
}

.modal-icon {
    display: flex;
    gap: 50px;
    margin-bottom: 5rem;
    width: 100%;
    justify-content: space-between;
}

.modal-icon > div {
    display: flex;
    align-items: center;
    gap: 10px;
}


.modal-body {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 3rem;
}

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

.list-container a {
    text-decoration: none;
    color: #000;;
    font-size: 16px;
    font-weight: 400;
}

.list-container ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-container ul li {
    list-style: none;
}

.mb-title {
    text-align: center;
    color: #000;;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 50px 0px;
}

.modal-footer div,
.footer-icons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.modal-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;;
}

.footer-icons img {
    max-width: 15px;
}

.modal-left {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    overflow: auto;
    transition: opacity 0.3s ease;
}

.modal-left.show {
    display: block;
}

/* Responsive Düzenlemeler */

@media (max-width: 1200px) {
    .menu-block nav ul li a {
        display: flex;
        align-items: center;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .logo-item img {
        max-width: 166px;
    }

    .menu-block nav {
        margin-inline: 0;
    }

    .menu-block nav ul {
        gap: 28px;
        margin: 0;
        padding: 0;
    }

    .menu-block nav ul li {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .menu-block nav ul li a {
        display: flex;
        align-items: center;
        font-size: 12px;
    }

    .header-menu {
        max-width: 15px;
        margin-bottom: 0;
    }
}

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

    .header-mobile {
        display: block;
    }

    .modal-left {
        display: none;
    }

    .menu-block nav ul li a {
        display: flex;
        align-items: center;
        font-size: 10px;
    }
}


/* Home-products Section */
.section-products {
    padding: 0;
}

.pro-section-title {
    color: var(--color-text);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
}

.pro-section-content {
    color: var(--color-text--variable);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-block: 2rem;
    text-align: center;
}

.product-swiper,
.discount-swiper {
    width: 100%;
    height: 100%;
}

.product-box {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 3rem;
}

.pro-box-img {
    border-bottom: 15px solid var(--color-5);
    width: 100%;
    object-fit: cover;
}

.product-box .product-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    object-fit: cover;
    border: 1px solid #ddd;
}

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

.product-box {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.product-box-content {
    position: relative;
}

.pro-box-img {
    display: block;
    width: 100%;
    transition: opacity 0.8s ease;
}

.product-box:hover .pro-box-img {
    opacity: 0.6;
}

.add-to-cart-button,
.notify-button {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-5);
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.8s ease;
    cursor: pointer;
    z-index: 1000000000000;
}

.discount, .new-product {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-5);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    transition: opacity 0.8s ease;
    cursor: pointer;
    z-index: 100;
    border-radius: 5px;
}

.add-to-cart-button a,
.notify-button a {
    color: white;
    text-decoration: none;
}

.product-box:hover .add-to-cart-button,
.product-box:hover .notify-button {
    opacity: 1;
}

.pro-box-title {
    color: var(--color-text);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-block: 10px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    gap: 20px;
    background-color: #fff;
}

.old-price {
    color: var(--color-text--variable);
    font-size: 16px;
    font-weight: 700;
    text-decoration: line-through;
}

.sold-out {
    text-align: center;
    color: var(--color-text--variable);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.new-products-slider {
    position: relative;
}

.product-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.product-arrows i {
    background-color: var(--color-5);
    color: white;
    padding: 10px;
    font-size: 20px;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-arrows i.fa-arrow-left {
    margin-left: 10px;
}

.product-arrows i.fa-arrow-right {
    margin-right: 10px;
}

.stok {
    text-align: center;
    text-decoration: line-through;
    color: var(--color-text--variable);
    font-weight: 600;
}


/*  Section categories */
.section-banners {
    margin-block: 5rem;
}

.mb20 {
    margin-bottom: 20px;
}

.banner-box {
    position: relative;
    padding: 10px 0;
    box-sizing: border-box;
    width: 100%;
}

.banner-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    object-fit: cover;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px 40px;
}

.banner-box .banner {
    opacity: 1;
}

.banner span {
    font-size: 16px;
    font-weight: 300;
}

.banner-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    transition: all .3s ease;
}

.banner-box:hover .banner-title{
    color: var(--color-4);
    box-shadow: 0 8px 20px #e2bbe9;
    padding: 0 1rem;
    border-radius: 15px;
}

.banner-desc {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Discount Product */
.discount-home {
    background-color: var(--color-5);
    position: relative;
    margin-bottom: 50px;
}

.swiper.discount-swiper {
    overflow: hidden;
}


.discount-swiper {

    position: relative;
}

.discounted-products .pd20 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.discount-box {
    text-align: center;
    background-color: var(--color-5);
    max-width: 891px;
    border-radius: 20px 20px 0px 0px;
}

.discount-title {
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.discount-p {
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
}

.discount-img {
    border-bottom: 15px solid var(--color-5);
    width: 100%;
    flex-shrink: 0;
}

.discount-pro {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 2rem;
}

.discount-pro-title {
    color: var(--color-text);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-block: 10px;
}

.discount-price {
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    background-color: #fff;
}

.discount-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-pro-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.discount-slider {
    position: absolute;
    top: 79%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-5);
    color: #fff;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.discount-arrows {
    position: absolute;
    top: 95%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.discount-arrows i {
    background-color: #fff;
    color: var(--color-1);
    padding: 10px;
    font-size: 20px;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.discount-arrows i.fa-arrow-left {
    position: absolute;
    left: 93px;
    transform: translateX(-50px);
}

.discount-arrows i.fa-arrow-right {
    position: absolute;
    right: 93px;
    transform: translateX(50px);
}


@media(max-width: 576px) {
    .discount-title {
        font-size: 15px;
        margin-top: 13px;
    }

    .discount-p {
        padding-bottom: 25px;
        font-size: 10px;
    }

    .section-banners {
        margin-block: 0;
    }

    .banner {
        padding: 0 40px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-desc {
        font-size: 14px;
    }
}

/* Discount Cards */
.why-us-section {
    position: relative;
    z-index: 999;
    padding-bottom: 150px;
}

.why-us-card {
    background-color: #fff;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    border-radius: 15px;
    max-height: 350px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@media(min-width: 992px) {
    .why-us-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    }
}

.why-us-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-block: 10px;
    color: var(--color-text);
}

.why-us-p {
    text-align: center;
    width: 300px;
    color: var(--color-text--variable);
}

@media(max-width: 1200px) {
    .discount, .new-product {
        bottom: auto;
        top: 310px;
    }
}


@media (max-width: 1024px) {
    .discount, .new-product {
        bottom: auto;
        top: 65%;
    }
}

@media (max-width: 992px) {
    .discount, .new-product {
        bottom: auto;
        top: 357px;
    }
}

@media (max-width: 820px) {
    .discount, .new-product {
        bottom: auto;
        top: 357px;
    }

    .discount-box {
        width: 70%;
    }

    .discount-title {
        font-size: 22px;
    }

    .discount-p {
        padding-bottom: 25px;
        font-size: 12px;
    }

    .section-banners {
        margin-block: 3rem;
    }
}

@media(max-width: 768px) {
    .discount, .new-product {
        bottom: auto;
        top: 80%;
    }

}

@media(max-width: 576px) {
    .discount, .new-product {
        bottom: auto;
        top: 80%;
    }

    .discount-title {
        font-size: 15px;
        margin-top: 13px;
    }

    .discount-p {
        padding-bottom: 25px;
        font-size: 10px;
    }

    .section-banners {
        margin-block: 0;
    }

    .banner {
        padding: 0 40px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-desc {
        font-size: 14px;
    }
}

/* CTA */
.section-cta .cta {
    background-image: url("/front/assets/img/cta-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -150px;
    margin-bottom: 50px;
    bottom: 50%;
}   

.cta a {
    color: #fff;
    font-size: 25px;
}

.cta a i {
    max-width: 30px;
}

@media(max-width: 1024px) {
    .cta a {
        font-size: 15px;
    }
}


@media(max-width: 576px) {
    .section-cta .cta{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 1rem;
        width: 100%;
        max-width: 72%;
        margin-left: 3rem;
    }
}

/* HOME-BLOG */

.blog-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    padding: 15px 15px 80px 15px;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: 60px;
}

.blog-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding-block: 10px;
}

.blog-p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.blog-btn {
    position: absolute;
    bottom: 19%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #fff;
    color: var(--color-2);
    padding: 10px 30px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.blog-box:hover .blog-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    z-index: 1000;
}


/* Footer */
footer {
    background-color: var(--color-text);
    padding: 5rem 2rem;
}

.section-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 150px;
}

.section-footer a,
.footer-title {
    color: #fff;
    font-size: 12px;
}

.footer-box {
    padding: 1rem;
}

.footer-box a {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 7px;
    padding-bottom: 10px;
    transition: all .3s ease;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    padding-block: 15px;
    position: relative;
  }
  
  .footer-title::after {
    content: "";
    display: block;
    width: 40px; 
    padding: 1px; 
    background-color: #fff; 
    margin-top: 5px;
  }

.footer-box ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

.footer-box-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.footer-box-logo {
    max-width: 200px;
    width: 100%;
    padding-bottom: 30px;
}

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

.footer-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    width: 100%;
    border: 2px solid #e2bbe9;
    border-radius: 10px;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.footer-media a:hover {
    background-color: #e2bbe9;
    color: white; 
}

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

.mg50 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title-media {
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 5px;
}


.footer-bottom {
    background-color: var(--color-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li {
    font-size: 15px;
    transition: all .3s ease;
}

.footer-bottom ul li a:hover,
.footer-box a:hover {
    opacity: .7;
}

.footer-bottom ul li a{
    color: var(--color-text);
    border-right: 1px solid #fff;
    padding: 0 6px;
}

.footer-bottom ul li:last-child a{
    border-right: none;
}

.footer-bottom .fb-row {
    display: flex;
    align-items: center;
}


@media (max-width: 1024px) {
    .footer-bottom .fb-row {
       font-size: 13px;
    }

    .footer-bottom ul li a{
        font-size: 10px;
    }

}

@media (max-width: 576px) {
    .footer-box .footer-media {
        margin-left: 0;
    }
}


/* breadcrumbs.blade.php */
.breadcrumbs ul {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 3rem 0;
}

.breadcrumbs a {
    text-decoration: none;
    color: #000;
}

.breadcrumbs li:not(:last-child):after {
    content: ">";
    color: var(--color-1);
    margin: 5px;
    font-weight: bolder;
}


.breadcrumbs li:last-child {
    font-weight: bold;
    color: var(--color-2); 
}


.breadcrumbs li:last-child a {
    color: var(--color-2); /
}


/* list-products.blade.php */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-5);
    padding: 40px 0;
    color: #fff;
}

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

.product-count {
    font-size: 1rem;
}

.page-title {
    font-size: 2rem;
}

.list-products-section {
    margin-bottom: 70px;
}

/* Single-product.blade.php */
.single-product-section {
    padding-bottom: 70px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-5);
    padding: 2rem 0;
    color: #fff;
}

.category-pro-title{
    font-size: 2rem;
}

.page-title {
    font-size: 2rem;
}

.pro-detail-top {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
}

.pro-detail-top ul li span{
    font-weight: 600;
    margin-right: 10px;
}

.pro-detail-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pro-detail-code {
    display: flex;
    font-size: 1rem;
}

.pro-order {
    font-size: 1.5rem;
    color: var(--color-text--variable);
    font-weight: 600;
    padding: 2rem 1rem;
}

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

.pro-detail-shipping input {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: none;
    padding: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.pro-detail-shipping i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 16px;
    left: 95%;
}

.payment-info {
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.payment-title {
    font-weight: 600;
}

.payment {
    max-width: 350px;
    margin-bottom: 1rem;
}

.single-pro-box {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    margin-bottom: 1rem;
}


.single-new-price span {
    font-size: 1rem;
    top: 0;
}

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

.price-wrapper {
    font-size: 2rem;
}

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

.single-btn {
    padding: 1rem 3rem;
    color: #fff;
    background-color: var(--color-text--variable);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .3s ease;
    border-radius: 10px;
}

.single-btn:hover {
    color: #fff;
    background-color: var(--color-4);
}

.single-btn i {
    transition: transform 0.3s ease;
}

.single-btn:hover i {
    transform: translateX(7px);
}


.flower-detail-title {
    font-size: 25px;
    border-bottom: 2px solid var(--color-4);
    width: 25%;
}

.flower-detail-content {
    color: gray;
    padding: 1rem 0;
    margin-top: 1rem;
}

.comment {
    font-size: 1.5rem;
}

/* stars */
.rate {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    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;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    right: 20px;
    color: var(--color-1);
}

.comment-input {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px 40px;
    border: none;
    margin-block: 1rem;
}

.comment-form textarea {
    width: 100%;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 2rem;
}

.comment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.comment-btn button {
    background-color: var(--color-text--variable);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: #fff;
    transition: all .3s ease;
    margin-bottom: 2rem;
    border: none;
}

.comment-btn button:hover {
    background-color: var(--color-4);
   
}


/* similar-product */
.similar-pro-container {
    background-color: #edf1e5;
    padding: 50px 0;
}

.similar-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.similar-pro-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    padding: 10px 0;
} 

.line {
    display: inline-block;
    width: 10%; 
    padding: 1px; 
    background-color: var(--color-1); 
    margin: 0 50px;
}


.productDetailSwiper {
    width: 100%;
    max-height: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.productDetailSwiper .swiper-slide {
    width: 30%; 
    height: 100%; 
    opacity: 0.6; 
}

.productDetailSwiper2 {
    height: 80%;
    width: 100%;
}

.productDetailSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.productDetailSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}


.productDetailSwiper .swiper-slide-thumb-active {
    opacity: 1; 
}

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


@media (max-width: 1200px) {
    .productDetailSwiper2 {
        max-height: 400px; 
    }

    .productDetailSwiper {
        max-height: 100px; 
    }
}

@media (max-width: 992px) {
    .productDetailSwiper2 {
        max-height: 300px; 
    }

    .productDetailSwiper {
        max-height: 80px; 
    }
}

@media (max-width: 576px) {
    .productDetailSwiper2 {
        max-height: 200px; 
    }

    .productDetailSwiper {
        max-height: 60px; 
    }
}
 


/* WhatsApp  */
.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/imgres?q=wp&imgurl=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fwp-content%2Fuploads%2F2023%2F08%2Fwp.jpg&imgrefurl=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fweb-sitesine-whatsapp-butonu-ekleme%2F&docid=IugeXq5bUgvB5M&tbnid=KMUJ0xzRnt2iGM&vet=12ahUKEwig_feFpYaJAxVQ0QIHHZRuCbcQM3oECEYQAA..i&w=540&h=360&hcb=2&ved=2ahUKEwig_feFpYaJAxVQ0QIHHZRuCbcQM3oECEYQAA) 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;
    }
}

/* svg renkleri */
.phone-icon .phone-path {
    fill: var(--color-2);
}

.icon-item path {
    fill: var(--color-2); 
}

.fa-magnifying-glass {
    color: var(--color-2);
}

.modal-icon path{
    fill: var(--color-2); 
}


/* list-blogs.blade.php */
.list-blogs-section {
    padding-bottom: 100px;
}

.blog-list-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%; 
    margin-bottom: 5rem;
    border: 1px solid rgb(191, 189, 189);
    border-radius: 10px;
    padding: 1rem;
}

.blog-img {
    width: 100%;
    aspect-ratio: 12 / 9; 
    object-fit: cover; 
}

.blog-img img {
    width: 100%;
    object-fit: cover; 
}

.blog-list-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.blog-list-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-list-desc {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-list-btn {
    display: inline;
    font-size: 16px;
    padding: 10px;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    width: 150px;
}

.blog-list-btn:hover {
    color: #000;
}

.blog-list-btn i {
    margin-left: 5px;
    color: var(--color-4);
}


/* single-blog.blade.php */
.single-blog-page {
    background-color: #edf1e5;
}

.blog-detail-box {
    margin-bottom: 3rem;
}

.blog-detail-span {
    color: var(--color-1);
    margin-bottom: 1rem;
}

.other-names {
    margin-bottom: 1rem;
}

.other-names span{
    color: var(--color-1);
}

.blog-span{
    font-weight: bold;
}

.blog-detail-title {
    color:var(--color-1);
    font-size: 27px;
    text-align: center;
}

.blog-detail-img{
    width: auto;
    display: block;
    margin: 2rem auto;
}


/* contact.blade.php */
.contact-section {
    padding-bottom: 6rem;
}

.contact-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    position: relative;
    margin-bottom: 2rem;
    background: var(--color-2);
    color: #fff;
  }
  
  .contact-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #fff;
    margin: 10px auto 0;
  }
  

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid lightgrey;
    border-radius: 10px;
}

.contact-robo {
    width: 300px;
}

.contact-btn {
    margin-top: 1rem;
}

.contact-btn button {
    background-color: var(--color-3);
    color: #ffffff;
    padding: 10px 50px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s all;
}

.contact-btn button:hover {
    background-color: var(--color-4);
}

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

.contact-right div {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.contact-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    background-color: #edf1e5;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    padding: 30px;   
}

.contact-icon:hover {
    color: #000;
}

.contact-icon i {
    font-size: 30px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .contact-icons {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    } 

    .contact-icon i {
        font-size: 18px;
    }
}


/* Dropdown Menü */
.dropdown-menu {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    margin-top: 1rem;
    padding: 0;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s; 

}

.dropdown-menu li {
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;

}

/* Dropdown Menü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 720px;
    max-width: calc(100vw - 40px);
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    margin-top: 0;
    padding: 0;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s; 
}

.dropdown-menu li {
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-menu .drop-menu-01 { 
    background-color: white; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .drop-menu-02 { 
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    width: 250px;
    transition: opacity 0.5s ease;
}

.dropdown-menu li i {
    margin-right: 10px;
    color: var(--color-1);
    transition: color 0.3s ease; 
}
.dropdown-menu .drop-menu-01 {
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}


.dropdown-menu .drop-menu-02 { 
    margin: 0;
    padding: 0;
}


.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    width: 250px;
    
    transition: opacity 0.5s ease;
}

.dropdown-menu li i {
    margin-right: 10px;
    color: var(--color-1);
    transition: all 0.3s ease;
}
.drop-menu-01 li {
    width: 50%;
}


/* About-us */
.about-us-section {
    margin-bottom: 5rem;
}

/* Deafult-Page */
.default-page-section {
    margin-bottom: 5rem;
}


/* FOOTER-STICKY */
.footer-sticky {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--color-2);
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid var(--color-1);
}

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

.footer-sticky .top-box {
    transform: translateY(-1.5rem);
}

.footer-sticky .sticky-box .icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sticky .top-box .icon {
    background: var(--color-1);
    color: var(--color-4);
    padding: 10px;
    border-radius: 50%;
    position: relative;
}

.footer-sticky .top-box .icon::before,
.footer-sticky .top-box .icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid white;
    opacity: 0.5;
}

.footer-sticky .top-box .icon::before {
    height: 70px;
    width: 70px;
}

.footer-sticky .top-box .icon::after {
    height: 60px;
    width: 60px;
    opacity: 0.75;
}

.footer-sticky .sticky-box .text {
    font-size: 15px;
    color: white;
    text-align: center;
}

.footer-sticky .top-box .icon i,
.footer-sticky .sticky-box .icon i {
    color: white;
    font-size: 30px;
}

.footer-sticky .top-box .text {
    transform: translateY(1.5rem);
    text-align: center;
}

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

@media (max-width: 576px) {
    .footer-sticky .sticky-box .text {
        font-size: 12px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
        box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
        box-shadow: 0 0 15px 15px rgba(255, 255, 255, 0.15);
    }
    100% {
        transform: scale(2);
        opacity: 0;
        box-shadow: 0 0 25px 25px rgba(255, 255, 255, 0);
    }
}

.footer-sticky .top-box .icon::before,
.footer-sticky .top-box .icon::after {
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.3);
}


/* NOTFOUND-PAGE  */
.not-found-page {
    padding: 0 0 100px 0;
}

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

.not-found-img {
    width: 100%;
}

.not-found-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-found-title {
    font-size: 40px;
    font-weight: 600;
}

.not-found-p {
    padding-bottom: 20px;
}

.not-found-btn{
    background-color: var(--color-2);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 15px;
    transition: all .3s ease;
}

.not-found-btn:hover {
    color: #fff;
    opacity: .8;
}


.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;
}


.single-pro-box {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    margin-bottom: 1rem;
}

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

.single-old-price {
    margin-bottom: 1rem;
}

.old-amount {
    font-size: 2rem;
    text-decoration: line-through;
    color: #8c8c8c;
}

.old-span-box {
    display: flex;
    flex-direction: column;
    color: #8c8c8c;
}

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

.new-amount {
    font-size: 2rem;
}

.new-span-box {
    display: flex;
    flex-direction: column;
}

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

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

.modal-icon a span {
    font-size: 13px;
}

.cards-section .col-lg-4 {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .discount, .new-product {
        bottom: auto;
        top: 74%;
    }
}


section.category-header {
    padding: 5px;
}
.header-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadss.container h1.title {
    display: none;
}

.breadss ul.links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0px 0px 0px;
}

@media(max-width: 992px) {
    .header-list {
        flex-direction: column;
    }
    
    .product-count {
        display: none;
    }
    
    h1.category-pro-title {
        margin: 0;
        padding: 0px 0px 10px 0px;
    }
    section.category-header {
        padding: 10px;
    }
    .pro-box-title {
        font-size: 16px;
    }
    .price {
        flex-wrap: wrap;
    }
    .discount {
        display: none;
    }
    .pro-box-title {
        font-size: 12px;
    }
    .price {
        font-size: 13px;
    }
    
    .old-price {
        font-size: 13px;
        margin-bottom: -14px;
    }
    .pro-box-img {
         border-bottom: none;
    }
    section.why-us-section .col-lg-4.col-md-6.col-sm-12 {
        margin-bottom: 21px;
    }
    .footer-box a {

        font-size: 13px;

    }
    .blog-title {
        font-size: 12px;
    }
    
    .blog-p {
        font-size: 11px;
    }
    header.header-mobile {
        position: sticky;
        top: 0;
        z-index: 999;
    }
    .list-container ul li {
        list-style: none;
        width: 47%;
    }
    .list-container ul {
        display: flex
    ;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }
}

span.placeholder {
    background: transparent;
    cursor: pointer;
}


.contact-form input,.contact-form textarea {
    padding: 9px;
    border: 1px solid #436850;
    border-radius: 4px;
    margin-bottom: 0;
    width: 100%;
}

.contact-bottom-form-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-form .contact-btn button {
    padding: 10px 40px;
    color: white;
}

@media(max-width: 992px){
    .contact-bottom-form-btn {
        flex-direction: column;
        gap: 30px;
    }
    .card {
        padding: 0;
        font-size: 13px;
        text-align: center;
    }.cards-section {
        display: flex;
        flex-wrap: wrap;
      }
      
      @media (max-width: 768px) { /* Mobil boyutlar için */
        .cards-section {
          display: flex;
        }
      
        .cards-section .col-lg-4 {
          flex: 1 1 calc(50% - 10px); /* Yan yana olması için genişlik */
          margin: 5px;
        }
      
        .cards-section .col-lg-4:nth-child(3) {
          flex: 1 1 100%; /* 3. kolon altta tam genişlik */
        }
      }
      
}


    /* footer sticky hemen ara */

    .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 #958e8e;
    }


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

    .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 a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .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;
    }

}


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

  .sticky-box a .title {
    color: white !important;
}
.sticky-area.footer-sticky {
    padding: 10px;
}

.login-panel .top {
    width: 100%;
    height: 50%;
    background: white;
    background-clip: content-box;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-panel .top .btn-close-panel {
    color: black;
}

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

.login-panel .top .logo {
    padding: 10px;
    text-align: center;
    height: 12%;
}

.product-detail .order-create .price em {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
}

.product-detail .order-create .price span {
    display: flex !important;
    align-items: center !important;
}

.product-detail .order-create .price .price-wrap {
    width: unset;}
    .section-title.d-flex.justify-content-center {
        font-weight: 600;
        font-size: 32px;
        margin-bottom: 20px;
    }


.contact-form-title {
    font-size: 22px;
    margin-bottom: 30px;
}


.contact-box {
    background-color: #838dc9;
    color: white;
    height: 250px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  
  @media (max-width: 425px) {
    .contact-box {
      height: 195px;
    }
  }
  
  .contact-box i {
    font-size: 32px;
  }
  
  @media (max-width: 425px) {
    .contact-box i {
      font-size: 22px;
    }
  }
  
  .contact-box-title {
    font-size: 22px;
    margin: 10px 0;
    font-weight: bold;
  }
  
  @media (max-width: 425px) {
    .contact-box-title {
      font-size: 18px;
    }
  }
  
  .contact-box-content {
    font-size: 14px;
    text-align: center;
  }
  
  @media (max-width: 425px) {
    .contact-box-content {
      font-size: 11px;
    }
  }
  
  section.contact-main {
    margin: 0px 0px 90px 0px;
}
.product-arrows {
    top: 57%;
}
.product-arrows i.fa-arrow-left {
    position: relative;
    left: 10%;
}
.product-arrows i.fa-arrow-right {
    position: relative;
    right: 10%;
}
.discount-arrows {
    top: 45%;
}
.discount-arrows i.fa-arrow-left {
    left: 15%;
}
.discount-arrows i.fa-arrow-right {
    right: 15%;
}
@media(max-width: 992px){
    .product-arrows {
        top: 92%;
        justify-content: center;
        gap: 15px;
    }

    .discount-arrows i.fa-arrow-right {
        right: 50%;
    }
    .discount-arrows i.fa-arrow-left {
        left: 50%;
    }
    .discount-arrows {
        top: 94%;
    }
    .add-to-cart-button, .notify-button {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--color-5);
        color: #fff;
        padding: 15px 20px;
        margin: 0;
        width: 101%;
        border-radius: 5px;
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.8s ease;
        cursor: pointer;
        z-index: 1000000000000;
        padding: 6px;
        border-radius: 7px 7px 0px 0px;
    }
}   