/**
 * ClickFlorist - Utility CSS
 * Breakpoints: SM 576px, MD 768px, LG 992px, XL 1200px, XXL 1400px
 */

/* ========================================
   Base
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* ========================================
   Container
   ======================================== */

/* Sabit genişlikli container - içerik ortalanır */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tam genişlik container - duvardan duvara */
.container-fluid {
    width: 100%;
    padding: 0 15px;
}

/* Eski cf- prefix'li class'lar için uyumluluk */
.cf-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.cf-container-fluid {
    width: 100%;
    padding: 0 15px;
}

.cf-container-lg {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   Flex Utilities
   ======================================== */
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

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

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

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

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

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

/* Gap */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

/* Eski cf- prefix (uyumluluk) */
.cf-flex {
    display: flex;
}

.cf-flex-wrap {
    flex-wrap: wrap;
}

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

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

.cf-justify-between {
    justify-content: space-between;
}

/* ========================================
   Grid System
   ======================================== */

/* Row - flex container with gutter */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    padding: 0 15px;
}

/* Column sizes */
.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-6 {
    width: 50%;
}

.col-12 {
    width: 100%;
}

/* MD - 768px: 2 kolon */
@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666667%;
    }

    .col-md-12 {
        width: 100%;
    }
}

/* LG - 992px: 3+ kolon */
@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-8 {
        width: 66.666667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

/* Eski cf-row/cf-col (uyumluluk) */
.cf-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.cf-row>* {
    flex-shrink: 0;
    width: 100%;
    padding: 0 15px;
}

/* Column sizes - Mobile first */
.cf-col {
    flex: 1 0 0%;
}

.cf-col-auto {
    flex: 0 0 auto;
    width: auto;
}

.cf-col-1 {
    flex: 0 0 auto;
    width: 8.333333%;
}

.cf-col-2 {
    flex: 0 0 auto;
    width: 16.666667%;
}

.cf-col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.cf-col-4 {
    flex: 0 0 auto;
    width: 33.333333%;
}

.cf-col-5 {
    flex: 0 0 auto;
    width: 41.666667%;
}

.cf-col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.cf-col-7 {
    flex: 0 0 auto;
    width: 58.333333%;
}

.cf-col-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}

.cf-col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.cf-col-10 {
    flex: 0 0 auto;
    width: 83.333333%;
}

.cf-col-11 {
    flex: 0 0 auto;
    width: 91.666667%;
}

.cf-col-12 {
    flex: 0 0 auto;
    width: 100%;
}

/* SM - 576px */
@media (min-width: 576px) {
    .cf-col-sm-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .cf-col-sm-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .cf-col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .cf-col-sm-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .cf-col-sm-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .cf-col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .cf-col-sm-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .cf-col-sm-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .cf-col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .cf-col-sm-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .cf-col-sm-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .cf-col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* MD - 768px */
@media (min-width: 768px) {
    .cf-col-md-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .cf-col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .cf-col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .cf-col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .cf-col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .cf-col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .cf-col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .cf-col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .cf-col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .cf-col-md-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .cf-col-md-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .cf-col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* LG - 992px (Bootstrap 5) */
@media (min-width: 992px) {
    .cf-col-lg-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .cf-col-lg-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .cf-col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .cf-col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .cf-col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .cf-col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .cf-col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .cf-col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .cf-col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .cf-col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .cf-col-lg-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .cf-col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* XL - 1200px (Bootstrap 5) */
@media (min-width: 1200px) {
    .cf-col-xl-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .cf-col-xl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .cf-col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .cf-col-xl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .cf-col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .cf-col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .cf-col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .cf-col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .cf-col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .cf-col-xl-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .cf-col-xl-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .cf-col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* XXL - 1400px (Bootstrap 5) */
@media (min-width: 1400px) {
    .cf-col-xxl-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .cf-col-xxl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .cf-col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .cf-col-xxl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .cf-col-xxl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .cf-col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .cf-col-xxl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .cf-col-xxl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .cf-col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .cf-col-xxl-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .cf-col-xxl-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .cf-col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ========================================
   Display Utilities
   ======================================== */
.cf-hidden {
    display: none;
}

.cf-block {
    display: block;
}

.cf-inline {
    display: inline;
}

.cf-inline-block {
    display: inline-block;
}

.cf-inline-flex {
    display: inline-flex;
}

/* Bootstrap-style display utilities */
.cf-d-none {
    display: none !important;
}

.cf-d-block {
    display: block !important;
}

.cf-d-flex {
    display: flex !important;
}

.cf-d-inline {
    display: inline !important;
}

.cf-d-inline-block {
    display: inline-block !important;
}

.cf-d-inline-flex {
    display: inline-flex !important;
}

/* SM - 576px */
@media (min-width: 576px) {
    .cf-d-sm-none {
        display: none !important;
    }

    .cf-d-sm-block {
        display: block !important;
    }

    .cf-d-sm-flex {
        display: flex !important;
    }

    .cf-d-sm-inline {
        display: inline !important;
    }

    .cf-d-sm-inline-block {
        display: inline-block !important;
    }
}

/* MD - 768px */
@media (min-width: 768px) {
    .cf-md-hidden {
        display: none;
    }

    .cf-md-block {
        display: block;
    }

    .cf-md-flex {
        display: flex;
    }

    .cf-d-md-none {
        display: none !important;
    }

    .cf-d-md-block {
        display: block !important;
    }

    .cf-d-md-flex {
        display: flex !important;
    }

    .cf-d-md-inline {
        display: inline !important;
    }

    .cf-d-md-inline-block {
        display: inline-block !important;
    }
}

/* LG - 992px (Bootstrap 5) */
@media (min-width: 992px) {
    .cf-lg-hidden {
        display: none;
    }

    .cf-lg-block {
        display: block;
    }

    .cf-lg-flex {
        display: flex;
    }

    .cf-d-lg-none {
        display: none !important;
    }

    .cf-d-lg-block {
        display: block !important;
    }

    .cf-d-lg-flex {
        display: flex !important;
    }

    .cf-d-lg-inline {
        display: inline !important;
    }

    .cf-d-lg-inline-block {
        display: inline-block !important;
    }
}

/* XL - 1200px (Bootstrap 5) */
@media (min-width: 1200px) {
    .cf-d-xl-none {
        display: none !important;
    }

    .cf-d-xl-block {
        display: block !important;
    }

    .cf-d-xl-flex {
        display: flex !important;
    }

    .cf-d-xl-inline {
        display: inline !important;
    }

    .cf-d-xl-inline-block {
        display: inline-block !important;
    }
}

/* XXL - 1400px (Bootstrap 5) */
@media (min-width: 1400px) {
    .cf-d-xxl-none {
        display: none !important;
    }

    .cf-d-xxl-block {
        display: block !important;
    }

    .cf-d-xxl-flex {
        display: flex !important;
    }

    .cf-d-xxl-inline {
        display: inline !important;
    }

    .cf-d-xxl-inline-block {
        display: inline-block !important;
    }
}

/* ========================================
   Spacing Utilities
   ======================================== */
/* Margin */
.cf-m-0 {
    margin: 0;
}

.cf-m-1 {
    margin: 0.25rem;
}

.cf-m-2 {
    margin: 0.5rem;
}

.cf-m-3 {
    margin: 0.75rem;
}

.cf-m-4 {
    margin: 1rem;
}

.cf-m-5 {
    margin: 1.25rem;
}

.cf-m-6 {
    margin: 1.5rem;
}

.cf-m-8 {
    margin: 2rem;
}

.cf-mt-0 {
    margin-top: 0;
}

.cf-mt-1 {
    margin-top: 0.25rem;
}

.cf-mt-2 {
    margin-top: 0.5rem;
}

.cf-mt-3 {
    margin-top: 0.75rem;
}

.cf-mt-4 {
    margin-top: 1rem;
}

.cf-mt-5 {
    margin-top: 1.25rem;
}

.cf-mt-6 {
    margin-top: 1.5rem;
}

.cf-mt-8 {
    margin-top: 2rem;
}

.cf-mb-0 {
    margin-bottom: 0;
}

.cf-mb-1 {
    margin-bottom: 0.25rem;
}

.cf-mb-2 {
    margin-bottom: 0.5rem;
}

.cf-mb-3 {
    margin-bottom: 0.75rem;
}

.cf-mb-4 {
    margin-bottom: 1rem;
}

.cf-mb-5 {
    margin-bottom: 1.25rem;
}

.cf-mb-6 {
    margin-bottom: 1.5rem;
}

.cf-mb-8 {
    margin-bottom: 2rem;
}

.cf-ml-auto {
    margin-left: auto;
}

.cf-mr-auto {
    margin-right: auto;
}

.cf-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Padding */
.cf-p-0 {
    padding: 0;
}

.cf-p-1 {
    padding: 0.25rem;
}

.cf-p-2 {
    padding: 0.5rem;
}

.cf-p-3 {
    padding: 0.75rem;
}

.cf-p-4 {
    padding: 1rem;
}

.cf-p-5 {
    padding: 1.25rem;
}

.cf-p-6 {
    padding: 1.5rem;
}

.cf-p-8 {
    padding: 2rem;
}

.cf-px-0 {
    padding-left: 0;
    padding-right: 0;
}

.cf-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.cf-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.cf-py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.cf-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cf-py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.cf-py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* ========================================
   Text Utilities
   ======================================== */
.cf-text-center {
    text-align: center;
}

.cf-text-left {
    text-align: left;
}

.cf-text-right {
    text-align: right;
}

@media (min-width: 768px) {
    .cf-md-text-left {
        text-align: left;
    }

    .cf-md-text-center {
        text-align: center;
    }

    .cf-md-text-right {
        text-align: right;
    }
}

.cf-text-sm {
    font-size: 0.875rem;
}

.cf-text-base {
    font-size: 1rem;
}

.cf-text-lg {
    font-size: 1.125rem;
}

.cf-text-xl {
    font-size: 1.25rem;
}

.cf-text-2xl {
    font-size: 1.5rem;
}

.cf-font-normal {
    font-weight: 400;
}

.cf-font-medium {
    font-weight: 500;
}

.cf-font-semibold {
    font-weight: 600;
}

.cf-font-bold {
    font-weight: 700;
}

/* ========================================
   Width & Height Utilities
   ======================================== */
.cf-w-full {
    width: 100%;
}

.cf-w-auto {
    width: auto;
}

.cf-h-full {
    height: 100%;
}

.cf-h-auto {
    height: auto;
}

.cf-max-w-full {
    max-width: 100%;
}

/* ========================================
   Image Utilities
   ======================================== */
.cf-img-fluid {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   Button Base
   ======================================== */
.cf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cf-btn:hover {
    text-decoration: none;
}

.cf-btn-primary {
    background-color: #fbd04d;
    border-color: #f9d24e;
    color: black;
}

.cf-btn-primary:hover {
    opacity: 0.8;
}

.cf-btn-outline {
    background-color: transparent;
    border-color: #472439;
    color: #472439;
}

.cf-btn-outline:hover {
    background-color: #472439;
    color: #fff;
}

.cf-btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.cf-btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.cf-btn-secondary {
    background-color: #6b7280;
    border-color: #6b7280;
    color: #fff;
}

.cf-btn-secondary:hover {
    background-color: #4b5563;
    border-color: #4b5563;
    color: #fff;
}

/* ========================================
   Form Utilities
   ======================================== */
.cf-form-control {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2937;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cf-form-control:focus {
    border-color: #472439;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(71, 36, 57, 0.1);
}

.cf-form-control::placeholder {
    color: #9ca3af;
}

.cf-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.cf-form-group {
    margin-bottom: 1rem;
    position: relative;
}

/* ========================================
   Alert / Notification Utilities
   ======================================== */
.cf-alert {
    padding: 0.875rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
}

.cf-alert-success {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.cf-alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.cf-alert-warning {
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
}

.cf-alert-info {
    background-color: #f9f5f7;
    border: 1px solid #472439;
    color: #472439;
}

/* ========================================
   Card Utilities
   ======================================== */
.cf-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cf-card-body {
    padding: 1.25rem;
}

/* ========================================
   Border Utilities
   ======================================== */
.cf-border {
    border: 1px solid #e5e7eb;
}

.cf-border-0 {
    border: 0;
}

.cf-border-t {
    border-top: 1px solid #e5e7eb;
}

.cf-border-b {
    border-bottom: 1px solid #e5e7eb;
}

.cf-rounded {
    border-radius: 0.375rem;
}

.cf-rounded-lg {
    border-radius: 0.5rem;
}

.cf-rounded-full {
    border-radius: 9999px;
}

/* ========================================
   Shadow Utilities
   ======================================== */
.cf-shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cf-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.cf-shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cf-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Position Utilities
   ======================================== */
.cf-relative {
    position: relative;
}

.cf-absolute {
    position: absolute;
}

.cf-fixed {
    position: fixed;
}

.cf-sticky {
    position: sticky;
}

/* ========================================
   Overflow Utilities
   ======================================== */
.cf-overflow-hidden {
    overflow: hidden;
}

.cf-overflow-auto {
    overflow: auto;
}

.cf-overflow-x-auto {
    overflow-x: auto;
}

.cf-overflow-y-auto {
    overflow-y: auto;
}

/* ========================================
   Theme Styles
   ======================================== */

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

body {
    font-family: 'Roboto', sans-serif;
    color: #472439;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
}

a {
    color: inherit;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.img-fluid {
    max-width: 100%;
}

.btn-slider {
    background: #000000;
    font-weight: 700;
    font-size: 18px;
    color: white;
    padding: 10px 15px;
    max-width: 180px;
    border-radius: 50px;
}

.btn-slider:hover {
    background: #F6C623;
}

.p80 {
    padding: 80px 0px;
}

.p40 {
    padding: 40px 0px;
}

.mobile-nav {
    display: none;
}

.mobile-close-menu {
    display: none;
}


.close-area {
    display: flex;
    align-items: center;
    color: #C4C4C4;
    font-size: 13px;
    font-weight: 300;
}

.close-area i {
    margin-right: 10px;
}



.alert-danger {
    background-color: #F44336;
}

.alert-success {
    background-color: #2ec4b6;
}

.alert {
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
}



/* header */

/* Ana Header - Arama, Logo, İkonlar */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 15px;
}

.header-search {
    background: #fff;
    border-radius: 22px;
    box-shadow: 10px 25px 25px #E5DBC3;
    padding: 10px 15px;
    position: relative;
    width: 280px;
}

.header-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
}

.header-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
}

.header-logo {
    display: block;
}

.header-logo img {
    max-height: 80px;
    width: auto;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #472439;
    position: relative;
}

.header-icon-item i {
    font-size: 28px;
    color: #200E32;
    margin-bottom: 4px;
}

.header-icon-item .fa-bag-shopping {
    -webkit-text-stroke: 1.5px #200E32;
    color: transparent;
}

.header-icon-item span {
    font-size: 12px;
}

.header-icon-item .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #000;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

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

/* Eski search-area stilleri (mobil vs için) */
.search-area {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 10px 25px 25px #E5DBC3;
    border-radius: 22px;
    position: relative;
    padding: 10px 15px;
}

.search-area input {
    border: none !important;
    width: 100%;
    outline: none;
    box-shadow: none;
    font-size: inherit !important;
    padding: 0 !important;
    font-style: normal !important;
    font-weight: normal !important;
}

.search-area button {
    position: absolute;
    right: 15px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    top: 50%;
    transform: translateY(-50%);
}




.header-menu {
    background: #000000;
}

/* Navigasyon Bar */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-logo {
    display: none;
}

.nav-home {
    color: #fff;
    font-size: 22px;
    padding: 18px 25px 18px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 10px;
}

.nav-home:hover {
    color: #F6C623;
}

/* Ana Menü */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    padding: 18px 20px;
    color: #FEEDF7;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-menu>li>a:hover {
    color: #F6C623;
}

/* Dropdown - ul li ul yapısı */
.nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 15px 0;
    list-style: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li ul li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
}

.nav-menu li ul li a:hover {
    background: #f5f5f5;
    color: #472439;
}

/* Mega Menu - geniş dropdown */
.nav-menu li ul.mega-menu {
    width: 900px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
}

.nav-menu li:hover>ul.mega-menu {
    transform: translateX(-50%) translateY(0);
}

.nav-menu li ul.mega-menu li {
    width: 33.33%;
}

.nav-menu li ul.mega-menu li a {
    padding: 8px 15px;
}

.nav-menu li ul.mega-menu li a:before {
    content: "›";
    margin-right: 8px;
    color: #ccc;
}

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

/* Eski menü stilleri (uyumluluk için) */
.header-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-menu ul li a:hover {
    color: #F6C623;
}

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

.header-menu ul li a:hover i {
    color: #F6C623;
}

.dropdown .menu .left i {
    color: inherit;
    font-size: 12px;
}

li.dropdown {
    position: relative;
}

li.dropdown .menu {
    position: absolute;
    z-index: 999;
    background: white;
    top: 57px;
    width: 900px;
    display: flex;
    box-shadow: 10px 20px 27px #E5D3DE;
    transform: scaleY(0);
    transition: all .3s ease;
    transform-origin: top;
}

li.dropdown .menu ul {
    display: block;
}

li.dropdown .menu ul li a {
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 12px;
    color: #230B34;
    margin-bottom: 20px;
}

li.dropdown .menu a:after {
    display: none;
}

li.dropdown .menu .left {
    width: 30%;
    padding: 60px 50px;
}

li.dropdown .menu .right {
    width: 70%;
    padding: 60px 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

li.dropdown .menu .right .category-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li.dropdown .menu .right ul li {
    width: 50%;
}

li.dropdown .menu .right ul {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
}

li.dropdown .menu .right ul li a {
    color: black;
    font-weight: 300;
}

li.dropdown .menu .right .catalog ul {
    display: block;
}

li.dropdown .menu .right .catalog ul li {
    width: auto;
}

li.dropdown .menu .right .catalog ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 65px;
    border: 1px solid #5F0038;
    font-weight: 300;
    font-size: 12px;
}

li.dropdown:hover .menu {
    transform: scaleY(1);
}

li.dropdown:hover .menu ul li a:hover {
    color: #000000;
}

.all-product {
    font-size: 10px;
    line-height: 12px;
    color: white;
    padding: 5px 15px;
    border: 1px solid #BF5695;
    display: inline-block;
    margin-bottom: 20px;
}

/* slider */

.slider { min-height: 490px; }
.slider img { width: 100%; height: auto; }

.slider-item {
    height: 490px;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-item .text {
    height: 460px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-item .text .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #271721;
    margin-bottom: 15px;
    position: relative;
    border-bottom: solid 2px #F6C623;
    padding-bottom: 15px;
}

.slider-item .text .desc {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #271721;
    margin-bottom: 20px;
}

/* Hero Slider — tema stilleri (yapısal CSS Vite app.css'ten gelir) */
.hero-slider-prev,
.hero-slider-next { background: #fff; color: #333; width: 40px; height: 40px; font-size: 16px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.hero-slider-prev:hover,
.hero-slider-next:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.25); }

/* home icons */

.home-icons {
    padding: 50px 0px 70px 0px;
}

.home-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-icon-item {
    display: flex;
}

.home-icons .icon {
    width: 100%;
    border: 1px solid #FFFFFF;
    box-shadow: 10px 25px 25px #E5DBC3;
    border-radius: 34.5px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all .3s ease;
    color: black;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.home-icons .icon:hover {
    background: #F6C623;
    color: white;
    border-color: #F6C623;
}

.home-icons .icon:hover path {
    fill: white;
}

.home-icons .icon .image {
    position: relative;
}

.home-icons .icon img {
    max-width: 40px;
    transition: all .3s ease;
}

.home-icons .icon img:nth-child(1) {
    opacity: 1;
}

.home-icons .icon:hover img:nth-child(1) {
    opacity: 0;
}

.home-icons .icon img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.home-icons .icon:hover img:nth-child(2) {
    opacity: 1;
}

/* campaign */

.campaign {
    padding: 50px 0;
}

.campaign .top-title {
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #CAB7C2;
    margin-bottom: 50px;
}

.big-camp {
    display: flex;
    background: #FEEDF7;
}

.big-camp .picture {
    position: relative;
    overflow: hidden;
    min-width: 330px;
    min-height: 100%;
}

.big-camp .picture img {
    min-width: 100%;
    min-height: 100%;
}

.big-camp .picture .big-camp-text {
    position: absolute;
    left: -55px;
    top: 45px;
    transform: rotate(-50deg);
    background: #bf5695;
    width: 200px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: white;
    padding: 5px;
}

.big-camp .text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.big-camp .text .title {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    color: #472439;
    margin-bottom: 15px;
}

.big-camp .text .desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #472439;
    margin-bottom: 20px;
}

.big-camp .text .sub-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #472439;
    margin-bottom: 20px;
}

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

.big-camp .text .price {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    color: #472439;
    margin-bottom: 10px;
}

.big-camp .text .price span {
    font-size: 15px;
    margin-left: 4px;
}

.big-camp .text .last-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.big-camp .text .last-day span {
    background: #472439;
    color: white;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
}

.big-camp .text .button {
    position: absolute;
    right: 20px;
    bottom: 30px;
}

.btn-examine {
    background: #BF5695;
    padding: 2px 25px;
    font-weight: 500;
    font-size: 24px;
    color: white;
}

.btn-examine:hover {
    background: #472439;
    color: white;
}


.small-camp {
    position: relative;
}

/* products */

.bg-grey {
    background: #f8f8f8;
    padding: 50px 0;
}

.title--area {
    font-size: 24px;
    font-weight: 700;
    color: #271721;
    margin-bottom: 30px;
    text-align: center;
}

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

.products:before {
    position: absolute;
    content: '';
    background-image: url(../images/kenarcicek.png);
    width: 150px;
    height: 285px;
    right: 0;
    top: 0;
}

.pro-box {
    margin-bottom: 50px;
    overflow: hidden;
}

.pro-box .text {
    background-color: white;
    padding-bottom: 10px;
}

.pro-box .title {
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #472439;
    padding: 16px 0;
}

.pro-box .price {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

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

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

.pro-box .price .new-price span {
    font-size: 13px;
}

.pro-box .bottom .basket {
    width: 100%;
    padding: 10px 0px;
    background: #f8cf16;
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -58px;
    opacity: 0;
    transition: all .3s ease;
}

.pro-box .bottom {
    position: relative;
}

.pro-box .bottom .basket img {
    margin-right: 10px;
}

.pro-box:hover .bottom .basket {
    opacity: 1;
    bottom: -10px;
}

.pro-box .picture {
    position: relative;
}

.pro-box>a {
    display: block;
}

.pro-box .picture {
    overflow: hidden;
}

.pro-box .picture>img,
.pro-box .picture>.product-hover-image {
    display: block;
    object-fit: cover;
}

.pro-box .picture: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 .3s ease;
}

.pro-box:hover .picture:before {
    opacity: 1;
}

.pro-box .picture .search {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 12px;
    left: -100px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    color: white;
    opacity: 0;
    transition: all .3s ease;
}

.pro-box .picture .search img {
    margin-left: 5px;
}

.pro-box:hover .picture .search {
    opacity: 1;
    left: 17px;
}

.pro-box .sold-out-text {
    text-align: center;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #472439;
}

/* testimonials */

.testimonials {
    margin-top: 40px;
    margin-bottom: 80px;
    position: relative;
}

.testimonials .area {
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.comment .avatar {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.comment .avatar img {
    border-radius: 50%;
    border: solid 3px white;
    width: 75px;
    height: 75px;
}

.comment .quote {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #807373;
    margin-bottom: 40px;
}

.comment .name {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #807373;
}

.yaprak1 {
    position: absolute;
    bottom: -30px;
    left: -50px;
}

.yaprak2 {
    position: absolute;
    top: -90px;
    right: -30px;
}

.yaprak3 {
    position: absolute;
    bottom: -60px;
    right: -35px;
}

/* products-month */

.products-month {
    background: #000000;
    padding-top: 80px;
    padding-bottom: 80px;
}

.products-month .top-title {
    text-align: center;
    margin-bottom: 50px;
}

.products-month .top-title span {
    font-size: 36px;
    line-height: 42px;
    color: white;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.products-month .top-title span:before {
    position: absolute;
    content: '';
    width: 165px;
    height: 1px;
    background: #AA9D9D;
    top: 50%;
    left: -170px;
    transform: translateY(-50%);
    z-index: 10;
}

.products-month .top-title span:after {
    position: absolute;
    content: '';
    width: 165px;
    height: 1px;
    background: #AA9D9D;
    top: 50%;
    right: -170px;
    transform: translateY(-50%);
    z-index: 10;
}

/* cta */

.cta {
    padding-top: 320px;
    margin-top: -370px;
    background-color: white;
}

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

.cta .top-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: solid 2px #f8d014;
}

.cta .top-title span {
    display: block;
    font-size: 36px;
    font-weight: 300;
}

.cta .button a {
    border: solid 1px #f8d014;
    background-color: #f8d014;
    color: #000000;
    border-radius: 30px;
    padding: 10px 50px;
    display: inline-block;
}

/* footer */

.footer {
    padding: 70px 0 5px 0;
    margin-top: 20px;
    border-top: 10px solid #f8d014;
}

.footer .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-desc {
    font-size: 16px;
    line-height: 19px;
    color: #ADADB5;
}

.footer .footer-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    border-bottom: solid 1px #f6c220;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer ul.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul.footer-menu li a {
    font-size: 15px;
    line-height: 30px;
    color: #333;
}

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


.footer .bottom {
    border-top: solid 1px #C4C4C4;
    margin-top: 40px;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social 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;
    margin-right: 5px;
}

.social a:hover {
    color: #2b2b34;
    border: solid 1px #2b2b34;
}

.footer .bottom .copy {
    font-size: 13px;
    color: #ADADB5;
    text-align: center;
}

.footer .bottom .mail {
    font-size: 13px;
    text-align: right;
    color: #ADADB5;
}

.footer .bottom .mail a:hover {
    color: #2b2b34;
}

/* head-list */

.head-list .head-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

.head-list .list select {
    background: none;
    border: none;
    font-size: 14px;
    color: #271721;
    outline: none;
}

/* pagination */

.pagination .pagination-area {
    text-align: center;
}

.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222229;
}

.pagination ul li a {
    display: inline-block;
    padding: 15px 20px;
    background: #E1E1E1;
    margin-right: 11px;
    transition: all .3s ease;
}

.pagination ul li a:hover,
.pagination ul li.active a {
    background: #BF5695;
    color: white;
}

.pagination ul .direction a {
    padding: 12px 50px;
    display: flex;
    align-items: center;
    background: #222229;
    color: white;
    font-size: 18px;
}

.pagination ul .direction:last-child a i {
    margin-left: 15px;
    margin-right: 0;
}

.pagination ul .direction a i {
    margin-right: 15px;
    color: #BF5695;
}

.pagination ul .direction a:hover i {
    color: #222229;
}

/* btn */

.btn {
    display: inline-flex;
    color: white;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}

.btn-read-more {
    background: #222229;
    padding: 17px 50px;
}

.btn i {
    margin-left: 10px;
    color: #FA866F;
}

.btn-read-more:hover {
    color: #222229;
    background: #FA866F;
}

.btn-read-more:hover i {
    color: #222229;
}

/* seo-text pro*/

.seo-text {
    padding: 50px 0px;
}

.seo-text .title {
    font-weight: bold;
    font-size: 26px;
    line-height: 30px;
    color: black;
    margin-bottom: 20px;
}

.seo-text .content-wrapper {
    margin-bottom: 50px;
}

/* breadcrumb */

.breadcrumb .bread-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

.bread-area .breadcrumb-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: inherit;
}

.bread-area ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.bread-area ul li a {
    margin-right: 15px;
    position: relative;
    font-weight: 400;
}

.bread-area ul li a:before {
    position: absolute;
    content: '\f054';
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    right: -11px;
    top: -1px;
}

.bread-area ul li {
    font-weight: 500;
}


/* blog */



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

.blog-box .infos-area {
    margin-left: 10px;
    padding: 10px;
}

.blog-box .infos-area .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-box .infos-area .desc {
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-pink {
    color: #271721;
    display: inline-flex;
    align-items: center;
    padding: 5px 20px;
    border: solid 1px #271721;
    font-size: 14px;
}

.btn-pink:hover {
    background: #271721;
    color: white;
}


.recent-post .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}


/* error */

.error-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-area .text {
    font-size: 100px;
    font-weight: 500;
}

.error-area .desc {
    font-size: 18px;
    text-align: center;
}


/* contact */

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

.contact-form form .form-item:focus {
    border-color: #271721;
}

.contact-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.form-btn {
    border: none;
    outline: none;
    padding: 10px 40px;
    background: #271721;
    border: solid 1px #271721;
    color: white;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
}

.form-btn:hover {
    background: none;
    color: #271721;
}

.contact-infos ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-infos ul li {
    margin-bottom: 15px;
}

.contact-infos ul li span {
    font-weight: 600;
}

.maps {
    margin-top: 80px;
}

.maps iframe {
    width: 100%;
}

/* footer-sticky-bar */

.footer-sticky-bar {
    display: none;
}

/* header */

.header-mobile-bottom {
    display: none;
}

/* product-detail */

.product-info .title {
    font-size: 22px;
}

.product-info .desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-info ul li {
    display: flex;
    font-size: 14px;
    margin-bottom: 5px;
}

.product-info ul li span {
    font-weight: 500;
    width: 110px;
    position: relative;
    display: inline-table;
}

.product-info ul li span:before {
    position: absolute;
    content: ':';
    right: 10px;
}

.product-check .title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
}

.product-detail-text .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-detail-text .desc {
    font-size: 14px;
}


/* bg-box */

.bg-box {
    padding: 20px 30px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 10px -8px;
    margin-bottom: 30px;
}




@media only screen and (min-width: 991px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {

    .header-mobile {
        display: none;
    }

}

@media only screen and (max-width: 992px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {

    .mobile-header-icons {
        display: flex;
    }

    .mobile-header-icons .i {
        font-size: 22px;
    }

    .mobile-header-icons a i {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: #222;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .mobile-header-icons a i.far.fa-map-marker-alt {
        margin-left: 15px;
        background-color: #4d4c4c;
    }

    .mobile-header-icons a i.fas.fa-phone {
        background-color: #00aad0;
    }

    .mobile-header-hamburger .hamburger-toggle {
        padding: 0px;
        border: none;
        background: linear-gradient(180deg, #000000 0%, #000000 100%);
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        width: 100%;
        -webkit-animation: fadeOutLeft 0.5s ease-in-out;
        animation: fadeOutLeft 0.5s ease-in-out;
    }

    .mobile-nav-content {
        padding-top: 20px;
        background: white;
        width: 100%;
        height: 100%;
        cursor: copy;
        overflow-y: scroll;
    }

    .mobile-nav-logo {
        padding-left: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: 20px;
        margin-top: 60px;
    }

    .mobile-nav-logo-content {
        position: relative;
    }

    .mobile-nav-logo-content i {
        display: block;
        margin: 0 auto 10px;
        max-width: 30px;
        line-height: 32px;
        font-size: 30px;
    }

    .mobile-nav-logo-content a {
        color: #b5bbc2;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-nav-logo>a {
        display: block;
        padding: 30px 60px;
    }

    .mobile-nav-logo>a img {
        width: 100%;
    }

    .mobile-nav-menu ul li {
        padding: 20px 0px;
        list-style: none;
        font-weight: 300;
        width: 50%;
    }

    .sub-menu ul {
        background-color: #28292a;
    }

    .mobile-nav-menu ul li .sub-menu-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav-menu ul li i {
        font-size: 14px;
        fill: #b5bbc2;
        color: #b5bbc2;
    }

    .mobile-nav-menu ul li a {
        color: #8F8F8F;
        font-weight: 300;
        font-size: 17px;
        display: inline-flex;
        align-items: center;
    }

    .mobile-nav-menu ul li ul {
        display: none;
        margin-top: 10px;
        margin-right: -25px;
        margin-left: -25px;
        padding-left: 25px;
    }


    .mobile-nav .search-area {
        box-shadow: none;
        background: #F8F8F8;
        margin: 20px;
        border-radius: 10px;
    }

    .mobile-nav .search-area input {
        background: #F8F8F8;
    }

    .mobile-nav-menu {
        padding: 0px 20px;
    }

    .mobile-nav-menu .title {
        font-size: 17px;
        color: #000000;
        position: relative;
        padding-left: 35px;
    }

    .mobile-nav-menu .title:before {
        position: absolute;
        content: '';
        width: 25px;
        height: 2px;
        background: #AA9D9D;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
    }


    .mobile-nav-menu ul li a img {
        margin-right: 10px;
    }


    .menu-infos-top ul {
        list-style: none;
        padding: 0px 20px;
        margin: 0;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: #472439;
    }

    .menu-infos-top {
        margin: 40px 0px;
    }


    .mobile-nav-login a {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #b5bbc2;
        padding-left: 25px;
        padding-bottom: 20px;
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav-login a svg {
        font-size: 18px;
        margin-right: 5px;
    }

    .mobile-nav.open {
        display: block;
        -webkit-animation: fadeInLeft 0.5s;
        animation: fadeInLeft 0.5s;
        overflow-x: scroll;
    }

    .cta-link {
        line-height: 40px;
        -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
        display: block;
        color: #fff;
        border-radius: 3px;
        background: #00aad0;
        text-align: center;
        margin: 20px;
        margin-bottom: 10px;
    }

    .mobile-close-menu {
        position: fixed;
        top: 18px;
        left: 20px;
        display: none;
        z-index: 9999;
    }

    .mobile-close-menu i {
        color: #C4C4C4;
        font-size: 25px;
    }

    ul.mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        list-style: none;
    }

    ul.mobile-menu-social li+li {
        margin-left: 15px;
    }

    ul.mobile-menu-social li a {
        border: 1px solid #00aad0;
        display: flex;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
    }

    .mobile-nav-menu ul {
        padding: 0px;
        display: flex;
        flex-wrap: wrap;
    }

    .header-mobile {
        display: block;
    }

    .header-mobile-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        padding-bottom: 15px;
        background: #000000;
    }

    .header-mobile .header-mobile-logo img {
        max-width: 120px;
    }


    /* general */


    .p80 {
        padding: 40px 0px;
    }

    .p40 {
        padding: 20px 0px;
    }


    /* header */

    .header-top {
        display: none;
    }

    .header-menu {
        display: none;
    }

    .slider {
        min-height: auto;
    }

    /* header */

    .header-mobile-top {
        display: flex;
        justify-content: space-between;
        background: #F6C623;
        padding: 7px 15px;
        color: #000000;
        font-size: 14px;
        font-weight: 300;
        width: 100%;
    }

    .header-mobile-top ul {
        list-style: none;
        padding: 0;
        display: flex;
        margin: 0;
    }

    .header-mobile-top ul li a {
        margin-left: 18px;
    }

    .header-mobile-top .order img {
        margin-right: 5px;
    }

    .header-mobile-bottom {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

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

    /* big-camp */

    .big-camp .picture {
        min-width: 100%;
    }


    /* home-icons */

    .home-icons {
        padding: 20px 0 40px;
    }

    .home-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .home-icons .icon {
        padding: 12px;
        font-size: 13px;
    }

    .pro-box .picture>img {
        width: 100%;
    }

    .products-month .top-title span {
        font-size: 24px;
    }

    .products-month .top-title span:before {
        width: 50px;
        left: -38px;
    }

    .products-month .top-title span:after {
        display: none;
    }

    .products-month {
        padding: 80px 20px;
    }

    .cta .top-title {
        font-size: 30px;
        line-height: 40px;
        border: none;
        margin-bottom: 10px;
    }

    .cta .area {
        padding: 30px 20px;
    }

    .cta .top-title span {
        font-size: 22px;
        line-height: 26px;
        margin-top: 40px;
    }

    /* testimonials */

    .yaprak1 {
        display: none;
    }

    .yaprak2 {
        display: none;
    }

    .yaprak3 {
        display: none;
    }

    /* footer */

    .footer {
        padding: 40px 0px 80px 0px;
    }

    .footer .footer-logo .text {
        font-weight: bold;
        font-size: 14px;
        margin-top: 20px;
    }

    .footer-area {
        display: none;
    }

    .footer .bottom {
        display: none;
    }

    .footer .footer-desc {
        display: none;
    }

    .none {
        display: none;
    }

    /* 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;
    }


    .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;
        color: #222;
    }

    .footer-sticky-bar .sticky-area .sticky-box .title {
        font-size: 10px;
        color: #000000;
    }

    .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;
        align-items: center;
    }

    /* breadcrumb */

    .breadcrumb .bread-area {
        display: block;
        text-align: center;
    }

    .bread-area ul {
        justify-content: center;
        overflow-x: scroll;
    }

    /* contact */

    .contact-infos {
        margin: 60px 0px 10px 0px;
    }

    /* pagination */


    .pagination ul li a {
        padding: 5px 10px;
        font-size: 13px;
    }

    .pagination ul .direction a {
        padding: 8px 15px;
        font-size: 13px;
    }

    /* seo-text */

    .seo-text {
        padding: 100px 0px;
    }

    /* product-detail */

    .bg-box {
        padding: 15px;
    }

    #sync2 {
        margin-top: 10px;
    }

    /* mobile-modal-search */

    #modal-mobile .modal-content {
        height: 100%;
        background: #000000;
    }

    #modal-mobile .modal-dialog {
        height: 100%;
        margin: 0;
    }

    .modal-content button.close {
        position: absolute;
        background: none;
        outline: none;
        border: none;
        color: white;
        left: 20px;
        top: 20px;
        font-size: 24px;
    }

    .modal-search {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 20px;
    }

    .modal-search .search-area {
        width: 100%;
        box-shadow: none;
        border-radius: 9px;
    }

    .modal-search .text {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .modal-content .logo {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* head-list */

    .head-list .head-area {
        display: block;
        text-align: center;
    }

    .head-area h1 {
        margin: 10px 0px;
    }

    /* blog */

    .blog-box {
        display: block;
    }

    .blog-box .infos-area {
        margin: 0;
        padding: 10px 5px;
    }

    .blog-box img {
        width: 100%;
    }

    /* 404 */

    .error-area {
        margin-bottom: 40px;
    }


}

@media (min-width: 1300px) {
    .container {
        max-width: 1300px;
    }
}


@media (max-width:880px) {
    /* slider */

    .slider-item .text {
        display: block;
        text-align: center;
        max-width: 100%;
        height: auto;
        padding-top: 15px;
    }

    .slider-item .text .title {
        font-size: 24px;
        line-height: 24px;
        border: none;
        margin-bottom: 0px;
    }

    .slider-item .text .desc {
        font-size: 16px;
    }

    .button1 a {
        font-size: 14px;
    }

    .slider-item {
        background-size: 100%;
        background-position: bottom;
        height: 450px;
    }


    .campaign .top-title {
        font-size: 18px;
        line-height: 21px;
    }

    .big-camp {
        display: block;
    }

    .big-camp .picture img {
        max-width: 100%;
        min-width: 100%;
    }

    .big-camp .text .title {
        font-size: 24px;
        display: flex;
        align-items: center;
    }

    .big-camp .text .title img {
        margin-right: 10px;
    }

    .big-camp .text .button {
        display: block;
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 40px;
        width: 100%;
    }

    .big-camp .text .button a {
        width: 100%;
        display: block;
        text-align: center;
    }

    .small-cap-area {
        display: none;
    }

}

@media (min-width:769px) and (max-width:1025px) {
    .slider-item .text .title {
        font-size: 32px;
        line-height: 32px;
    }

    .slider-item .text {
        padding-right: 40px;
    }

    .big-camp .text .button {
        left: 15px;
    }
}

@media (min-width:500px) and (max-width:992px) {
    .slider-item {
        height: 700px;
    }
}

@media (max-width:1466px) {

    .pro-box .price .old-price {
        font-size: 18px;
    }

    .pro-box .price .new-price {
        font-size: 18px;
    }

    /* big-camp */


    .big-camp .text .last-day {
        display: block;
    }

    .btn-examine {
        margin-top: 10px;
        width: 100%;
    }

    .yaprak1 {
        left: -15px;
    }

    .yaprak2 {
        right: 0px;
    }

    .yaprak3 {
        right: 0px;
    }
}

.fixed-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    z-index: 999;
    box-shadow: 0 5px 13.5px 1.5px rgb(0 0 0 / 10%);
}


.fixed-header-2 {
    position: sticky;
    top: 0;
    width: 100%;
    background: #000000;
    z-index: 999;
    box-shadow: 0 5px 13.5px 1.5px rgb(0 0 0 / 10%);
}

.comment {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.florist-icon {
    background: url(../img/sprite.png);
    background-repeat: no-repeat;
    display: inline-block;
}

.florist-icon.florist-icon-1 {
    background-position: -10px -10px;
    width: 24px;
    height: 24px;
}

.florist-icon.florist-icon-2 {
    background-position: -10px -116px;
    width: 30px;
    height: 32px;
}

.florist-icon.florist-icon-3 {
    background-position: -148px -75px;
    width: 24px;
    height: 33px;
}

.florist-icon.florist-icon-4 {
    background-position: -138px -10px;
    width: 32px;
    height: 26px;
}

.florist-icon.florist-icon-5 {
    background-position: -82px -10px;
    width: 18px;
    height: 32px;
}

.florist-icon.florist-icon-6 {
    background-position: -78px -78px;
    width: 25px;
    height: 28px;
}

.florist-icon.florist-icon-7 {
    background-position: -10px -78px;
    width: 24px;
    height: 28px;
}

.florist-icon.florist-icon-8 {
    background-position: -10px -326px;
    width: 38px;
    height: 23px;
}

.florist-icon.florist-icon-9 {
    background-position: -57px -326px;
    width: 38px;
    height: 23px;
}

.florist-icon.florist-icon-10 {
    background-position: -108px -309px;
    width: 38px;
    height: 23px;
}

.florist-icon.florist-icon-11 {
    background-position: -108px -276px;
    width: 38px;
    height: 23px;
}

.florist-icon.florist-icon-12 {
    background-position: -156px -276px;
    width: 38px;
    height: 23px;
}

.florist-icon.florist-icon-13 {
    background-position: -156px -309px;
    width: 38px;
    height: 23px;
}

.florist-icon.florist-icon-14 {
    background-position: -162px -342px;
    width: 21px;
    height: 21px;
}

.florist-icon.florist-icon-15 {
    background-position: -222px -10px;
    width: 40px;
    height: 41px;
}

.florist-icon.florist-icon-16 {
    background-position: -272px -10px;
    width: 32px;
    height: 41px;
}

.florist-icon.florist-icon-17 {
    background-position: -314px -10px;
    width: 40px;
    height: 40px;
}

.florist-icon.florist-icon-18 {
    background-position: -216px -61px;
    width: 40px;
    height: 40px;
}

.florist-icon.florist-icon-19 {
    background-position: -266px -61px;
    width: 40px;
    height: 40px;
}

.florist-icon.florist-icon-20 {
    background-position: -316px -60px;
    width: 31px;
    height: 41px;
}

#product-details-area .icon-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 991px) {
    #product-details-area .icon-list {
        display: none;
    }
}

#product-details-area .icon-list .icon-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 15px;
    display: flex;
}

@media only screen and (max-width: 580px) {
    #product-details-area .icon-list .icon-box {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        margin-bottom: 20px;
    }
}

#product-details-area .icon-list .icon-box .icon {
    display: table-cell;
    vertical-align: top;
}

#product-details-area .icon-list .icon-box .box-right {
    padding-left: 10px;
    display: table-cell;
    vertical-align: top;
    font-size: 12px;
    text-transform: uppercase;
}

#product-details-area .icon-list .icon-box .box-right span {
    display: block;
}

#product-details-area .payment-info {
    background: #fff;
    min-height: auto;
}


@media only screen and (max-width: 991px) {
    #product-details-area .payment-info {
        margin-bottom: 10px;
        display: none;
    }
}

#product-details-area .payment-info .payment-list {
    margin: 10px 0;
    display: flex;
}

@media only screen and (min-width: 991px) and (max-width: 1199px) {
    #product-details-area .payment-info .payment-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

#product-details-area .payment-info .payment-list .payment {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 3px 5px;
    margin-right: 10px;
}

@media only screen and (min-width: 991px) and (max-width: 1199px) {
    #product-details-area .payment-info .payment-list .payment {
        margin-bottom: 10px;
    }
}

#product-details-area .payment-info .payment-sub-info {
    font-size: 13px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none
    }
}

.list-head .dropdown {
    display: flex;
    position: relative;
}

@media (max-width: 991.98px) {
    .list-head .dropdown {
        margin: 10px 0;
        text-align: center;
    }
}

.list-head .dropdown p {
    float: left;
}

@media (max-width: 991.98px) {
    .list-head .dropdown p {
        float: none;
        font-size: 14px;
        line-height: 1.5;
        margin-right: 10px;
        display: inline;
    }
}

.list-head .dropdown .btn {
    margin: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.list-head .dropdown .btn::after {
    display: none;
}

.list-head .dropdown .btn i {
    margin: 4px 0 0 10px;
    float: right;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.list-head .dropdown .btn.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.list-head .dropdown .dropdown-menu {
    top: 80%;
    right: 0;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem
}

.list-head .list button {
    background: no-repeat;
    border: none;
    font-size: 14px;
}

.list-head .dropdown .dropdown-menu button {
    width: 100%;
    padding: 10px 10px;
}

.list-head .dropdown .dropdown-menu button:hover {
    background-color: #eee;
}

.list-head .dropdown .dropdown-menu {
    float: none;
    padding: 0;
    margin: 0;
}

.list-head .dropdown .btn {
    color: inherit;
    margin: 0;
}

.list-head p {
    font-size: 14px;
}

.breadcrumb-area .breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-area .breadcrumb li::before {
    margin-right: 10px;
}

.mb-1 {
    margin-bottom: 1rem;
}

.header-top .logo img {
    max-width: 170px;
}

/* order tracking */
.order-tracking-cta {
    margin-top: 40px;
}

@media(max-width:992px) {
    .error-area .text {
        font-size: 44px;
    }
}

.header-top .logo {
    display: flex;
    justify-content: center;
}

.pro-box .product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all .3s ease;
}

.pro-box:hover .primary-picture {
    opacity: 0;
}

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

.pro-box .primary-picture {
    transition: all .3s ease;
}

/* custom header */


.header-menu .home-link a {
    border-right: 1px rgba(255, 255, 255, 0.3) solid;
    padding: 20px 30px 20px 0;
    font-size: 20px;
    color: white;
}

.header-menu .home-link a:hover {
    color: white;
    opacity: 0.8;
}

.menu {
    position: relative;
    display: flex;
    justify-content: center;
}

.header-menu .menu>ul {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-menu .menu>ul>li>a {
    text-transform: uppercase;
    font-size: 14px;
    padding: 20px 20px;
    display: block;
}

.header-menu .menu>ul>li>a:hover {
    color: white;
    opacity: 0.8;
}

.header-menu .menu>ul>li:last-child a {
    padding-right: 0;
}


.header-menu li.dropdown {
    position: relative;
}

.header-menu ul.sub-menu {
    position: absolute;
    opacity: 0;
    box-shadow: 0 5px 10px -8px;
    background-color: white;
    width: 260px;
    color: #333;
    font-size: 15px;
    padding: 15px;
    list-style: none;
    top: 100%;
    left: 0px;
    transform-origin: top;
    transform: scaleY(0);
    transition: all 300ms ease-out 0s;
    z-index: 999;
}

.header-menu ul.sub-menu li {
    margin-bottom: 10px;
}

.header-menu ul.sub-menu li:last-child {
    margin-bottom: 0;
}

.header-menu li.dropdown:hover ul.sub-menu {
    opacity: 1;
    transform: scaleY(1);
}

.header-menu li.dropdown:hover:after {
    position: absolute;
    content: "\f0d8";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: white;
    font-size: 40px;
    font-weight: bold;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.header-menu ul.mega-menu {
    position: absolute;
    width: 100%;
    max-width: 1140px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    box-shadow: 0 5px 10px -8px;
    list-style: none;
    top: 100%;
    padding: 30px 35px 20px 35px;
    opacity: 0;
    transform-origin: top;
    transition: all 300ms ease-out 0s;
    color: #333;
    font-size: 15px;
    z-index: 999;
    border: solid 5px #333;
    border-top: 0;
    box-sizing: border-box;
}

.header-menu ul.mega-menu li {
    width: 33.33%;
    float: left;
}

.header-menu ul.mega-menu li a {
    transition: all .3s ease;
    position: relative;
}

.header-menu ul.mega-menu li a:hover {
    margin-left: 3px;
}

.header-menu ul.mega-menu li a:before {
    position: absolute;
    content: "\f0da";
    font-family: "Font Awesome 7 Free";
    left: -10px;
    font-weight: 900;
    color: #e5e5e5;
}

.header-menu li.megadown:hover ul.mega-menu {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
}

.header-menu li.megadown a {
    position: relative;
}


.header-menu li.megadown:hover>a:before {
    position: absolute;
    content: "\f0d8";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: white;
    font-size: 40px;
    font-weight: bold;
    bottom: -25px;
    left: 53%;
    transform: translateX(-50%);
    z-index: 1;
}

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

.mega-menu a {
    color: #222 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

.mega-menu a::after {
    display: none;
}

.header-menu ul.mega-menu li a {
    padding: 10px;
}

/* whatsapp desktop */

.get-quote {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: #25d366;
    padding: 10px 30px;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.get-quote i {
    margin-right: 10px;
    font-size: 22px;
}

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

    .footer-sticky-bar .sticky-area .sticky-box a i {
        font-size: 26px;
        margin-bottom: 3px;
    }
}


.header-ust-bolum {
    display: flex;
    justify-content: space-between;
    background: #4c4949;
    padding: 4px 15px;
    color: white;
}

.header-ust-sag {
    display: flex;
    align-items: center;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid white;
    padding-right: 15px;
}

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

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

/* header üst sağ (desktop) - ikon/metin beyaz */
.header-ust-bolum a,
.header-ust-bolum a:visited {
    color: #fff;
}

.header-ust-bolum a:hover {
    color: #fff;
    opacity: .9;
}

.header-ust-bolum i,
.header-ust-bolum svg,
.header-ust-bolum .text-theme {
    color: #fff !important;
}

.header-ust-bolum .header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: #fff;
}

.p0 {
    padding: 0px;
}

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


.cf-row.dc {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
    padding-bottom: 60px;
}

.dc img {
    max-width: 180px;
}

/* Location Selector */
.location-search { position: relative; z-index: 98; }
.location-search .search { position: relative; background: #fff; border-radius: 3px; box-shadow: 0 5px 10px -8px rgba(0,0,0,0.3); }
.location-search .search i { position: absolute; font-size: 20px; z-index: 1; }
.location-search .search .icon-location-arrow { color: #472439; left: 15px; top: 14px; pointer-events: none; }
.location-search .search input {
    width: 100%;
    height: 50px;
    padding: 0 15px 0 45px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.location-search .search input:focus { border-color: #472439; }
.location-search .search input::placeholder { color: #999; }
.location-clear { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 18px; color: #999; cursor: pointer; padding: 5px; line-height: 1; z-index: 2; }
.location-clear:hover { color: #472439; }
.location-results { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid #ebebeb; border-top: none; border-radius: 0 0 6px 6px; max-height: 280px; overflow-y: auto; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.location-results ul { list-style: none; margin: 0; padding: 0; }
.location-results li { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #151515; transition: all 0.15s; }
.location-results li:last-child { border-bottom: none; }
.location-results li:hover, .location-results li.highlighted { background: #472439; color: #fff; }
.location-loading, .location-no-results { padding: 15px; text-align: center; color: #666; font-size: 14px; }

@media (max-width: 992px) {
    section.home-icons {
        margin-top: 35px;
    }
}


.nostock-message {
    margin-bottom: 20px;
    padding: 13px 0px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    background: black;
    text-align: center;
    font-size: 17px;
    margin-bottom: 30px;
}

.nostock-message .wp-messages {
    transition: all 0.3s ease;
    color: white;
}

.nostock-message .wp-messages:hover {
    opacity: 0.8;
    color: white;
}

@media (max-width: 992px) {
    .nostock-message {
        font-size: 15px;
    }
}

section#product-details-area {
    margin-top: -20px;
}

section.cta.textWhite .top-title span * {
    color: white;
}


.content-wrapper {
    line-height: 1.6;
    word-wrap: break-word;
}

.content-wrapper::before,
.content-wrapper::after {
    content: "";
    clear: both;
    display: table;
}

.content-wrapper iframe {
    max-width: 100%;
}

.content-wrapper img {
    max-width: 100%;
    height: auto !important;
    margin: 10px 0px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: #222;
    margin-bottom: 12px;
}

.content-wrapper p {
    margin-bottom: 10px;
}

.content-wrapper ul,
.content-wrapper ol {
    display: block;
    list-style: inherit;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}

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

.content-wrapper table {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .content-wrapper table {
        display: block;
        border: none;
        overflow-x: scroll;
        height: 100% !important;
    }
}

@media (max-width: 991px) {
    .content-wrapper h2 {
        font-size: 22px;
    }
}

img.img-fluid.whiteLogo {
    width: 100px;
    height: auto;
    position: absolute;
    transform: translate(-115px, -35px);
    opacity: 0;
}

section.header-menu.fixed-header-2 img.img-fluid.whiteLogo {
    opacity: 1;
}


.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    margin-bottom: 20px;
}



.order-check-close {
    color: black;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
}

.order-check-close i {
    color: black;
}

.header-mobile-top .order a {
    display: flex;
    align-items: center;
    color: black;
}

.header-mobile-top .order a svg {
    fill: black;
}

/* ========================================
   Blog Styles
   ======================================== */

/* Blog Card (Listing) */
.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.blog-card-image {
    display: block;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 20px;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
}
.blog-card-title a {
    color: #472439;
}
.blog-card-title a:hover {
    color: #000;
}
.blog-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #472439;
    border: 1px solid #472439;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.blog-card-link:hover {
    background: #472439;
    color: #fff;
}

/* Blog Article (Detail) */
.blog-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}
.blog-article-header {
    padding: 30px 30px 20px;
}
.blog-article-title {
    font-size: 28px;
    font-weight: 700;
    color: #472439;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.blog-article-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 14px;
}
.blog-article-date i {
    margin-right: 6px;
}
.blog-article-image {
    margin: 0 30px 20px;
}
.blog-article-image img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.blog-article-content {
    padding: 0 30px 30px;
}
.blog-sidebar {
    position: sticky;
    top: 100px;
}
.blog-sidebar-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px;
}
.blog-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #472439;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f6c623;
}
@media (max-width: 991px) {
    .blog-article-header {
        padding: 20px 20px 15px;
    }
    .blog-article-title {
        font-size: 22px;
    }
    .blog-article-image {
        margin: 0 20px 15px;
    }
    .blog-article-content {
        padding: 0 20px 20px;
    }
    .blog-sidebar {
        margin-top: 30px;
        position: static;
    }
}

/* ========================================
   Order Tracking Result Styles
   ======================================== */
.cf-white-box {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cf-white-box .h4,
.cf-white-box .h5 {
    font-weight: 600;
    color: #472439;
    border-bottom: 2px solid #472439;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.cf-white-box dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 0;
}
@media (min-width: 768px) {
    .cf-white-box dl {
        grid-template-columns: 200px 1fr;
        gap: 0.75rem 1rem;
    }
}
.cf-white-box dt {
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: baseline;
}
.cf-white-box dt span {
    margin-left: auto;
    display: none;
}
@media (min-width: 768px) {
    .cf-white-box dt span {
        display: inline;
    }
}
.cf-white-box dd {
    margin: 0;
    color: #4b5563;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #e5e7eb;
}
@media (min-width: 768px) {
    .cf-white-box dd {
        padding-bottom: 0;
        border-bottom: none;
    }
}
.cf-white-box .cart-list {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed #e5e7eb;
}
.cf-white-box .cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: #faf9f7;
    border-radius: 0.375rem;
}
.cf-white-box .cart-item:last-child {
    margin-bottom: 0;
}
.cf-white-box .cart-item .img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.cf-white-box .cart-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
}
.cf-white-box .cart-item .content b {
    font-weight: 500;
    color: #1f2937;
}

/* Tracking Alert Box */
.cf-tracking-alert {
    background-color: #f9f5f7;
    border: 1px solid #472439;
    border-left-width: 4px;
    color: #472439;
    padding: 1rem 1.25rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    margin-top: 20px;
}
.cf-tracking-alert-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .cf-tracking-alert-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.cf-tracking-alert-note {
    color: #6b7280;
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}
.cf-tracking-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid #472439;
    color: #472439;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.cf-tracking-close-btn:hover {
    background-color: #472439;
    color: #fff;
}

/* ========================================
   Order Status Bar Styles
   ======================================== */
.cf-status-bar {
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 3rem;
}
.cf-status-success {
    background-color: #16a34a;
}
.cf-status-fail {
    background-color: #ef4444;
}
.cf-status-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 1024px) {
    .cf-status-container {
        padding: 0;
    }
}
.cf-status-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cf-status-icon {
    width: auto;
    height: 3rem;
}
@media (min-width: 1024px) {
    .cf-status-icon {
        height: 8rem;
    }
}
.cf-status-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}
.cf-status-text {
    color: #e5e7eb;
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
}

/* ========================================
   Order Sidebar Styles
   ======================================== */
.order-sidebar {
    position: relative;
}
.cf-sidebar-sticky {
    position: sticky;
    top: 1.5rem;
}
.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}
.sidebar-header i {
    color: #0891b2;
}
.sidebar-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.sidebar-product-section {
    padding: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
}
.sidebar-product-section:last-of-type {
    border-bottom: none;
}
.product-section-header {
    margin-bottom: 1rem;
}
.section-badge {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.delivery-details {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.delivery-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0891b2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.delivery-text {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}
.fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #6b7280;
    padding: 0.25rem 0;
}
.fee-value {
    font-weight: 600;
    color: #1f2937;
}
.fee-value.free {
    color: #10b981;
}
.product-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
}
.total-label {
    display: flex;
    flex-direction: column;
}
.total-label span {
    font-weight: 600;
    color: #1f2937;
}
.total-label small {
    font-size: 0.75rem;
    color: #9ca3af;
}
.total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0891b2;
}
.total-value small {
    font-size: 0.875rem;
}

/* Coupon Section */
.coupon-section {
    border-top: 1px solid #f3f4f6;
}
.coupon-toggle {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.2s ease;
}
.coupon-toggle:hover {
    background: #f1f5f9;
}
.coupon-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
}
.coupon-toggle i.fa-chevron-down.rotate {
    transform: rotate(180deg);
}
.coupon-form {
    padding: 1rem 1.25rem;
    background: #fff;
}
.coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
}
.coupon-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}
.coupon-input:focus {
    outline: none;
    border-color: #0891b2;
}
.coupon-btn {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.coupon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

/* Price Summary */
.price-summary {
    padding: 1.25rem;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}
.summary-row i {
    margin-right: 0.5rem;
    width: 16px;
}
.summary-row.discount .discount-value {
    color: #10b981;
    font-weight: 600;
}
.summary-row.total {
    padding-top: 0.75rem;
    border-top: 2px dashed #e5e7eb;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
}
.summary-row.total .total-amount {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0891b2;
}

/* ========================================
   Cart Page Styles
   ======================================== */
.cart-products-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.cart-product-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}
.cart-product-divider::before,
.cart-product-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.cart-product-divider span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.cf-empty-cart {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
}
/* ========================================
   Arelia Theme
   ======================================== */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

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


.loading-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 999;
    color: #fff
}

.loading-overlay .loading-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.time-selector select {
    padding-left: 30px;
    -webkit-box-shadow: 0 0 20px 0 #ececf3;
    box-shadow: 0 0 20px 0 #ececf3;
    border: 1px solid #ebebeb
}

.florist-wrapper.login {
    background: #fff url(./img/bg-login.png) right top no-repeat
}

.login .form-element.checkbox {
    margin-bottom: 10px;
    padding: 10px 20px;
}


body {
    position: relative
}

.form-wrapper .form-element {
    width: 100%;
    height: 52px;
    border: 1px solid #26262a;
    padding: 0 20px;
    margin-bottom: 20px
}

.form-wrapper .form-element.textarea {
    height: 104px;
    padding: 20px
}

.form-wrapper .btn {
    width: 100%;
    height: 52px;
    font-weight: 700
}

.form-wrapper .btn.send {
    color: #fff;
    background: #e53d3d
}

.form-wrapper .btn.send:hover {
    background: #9e231f
}

.form-wrapper .btn.cancel {
    color: #26262a;
    border: 1px solid #26262a;
    background: 0 0
}

.form-wrapper .btn.cancel:hover {
    background: #35353a;
    color: #fff
}


.box {
    background: #fff;
    -webkit-box-shadow: -2px 3px 10px 0 rgba(0, 0, 0, .1);
    box-shadow: -2px 3px 10px 0 rgba(0, 0, 0, .1) !important;
}

.cbtn {
    height: 36px;
    line-height: 36px;
    background: #000000;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    padding: 0 40px;
    border-radius: 0;
    cursor: pointer;
}

.cbtn:hover {
    background: #fff;
    color: #472439
}

.h6,
h6 {
    font-size: 13px;
    color: #151515;
    font-weight: 600;
    margin: 0
}

.h4,
h4 {
    color: #151515;
    font-weight: 600;
    margin: 0
}

p {
    color: #151515;
    line-height: 1.4
}

.pl0 {
    padding-left: 0 !important
}

.pr0 {
    padding-right: 0 !important
}

.pl10 {
    padding-left: 10px !important
}

.pr10 {
    padding-right: 10px !important
}

@font-face {
    font-family: icomoon;
    src: url(./fonts/icomoon.eot?ympp47);
    src: url(./fonts/icomoon.eot?ympp47#iefix) format("embedded-opentype"), url(./fonts/icomoon.ttf?ympp47) format("truetype"), url(./fonts/icomoon.woff?ympp47) format("woff"), url(./fonts/icomoon.svg?ympp47#icomoon) format("svg");
    font-weight: 400;
    font-style: normal
}

[class*=" icomoon-"],
[class^=icomoon-] {
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-arrow-thin-up:before {
    content: "\e900"
}

.icon-arrow-thin-down:before {
    content: "\e901"
}

.icon-arrow-next:before {
    content: "\e902"
}

.icon-arrow-prev:before {
    content: "\e903"
}

.icon-date:before {
    content: "\e904"
}

.icon-search:before {
    content: "\e905"
}

.icon-arrow-thin-next:before {
    content: "\e906"
}

.icon-arrow-thin-prev:before {
    content: "\e907"
}

.icon-star:before {
    content: "\f005"
}

.icon-star-o:before {
    content: "\f006"
}

.icon-check:before {
    content: "\f00c"
}

.icon-phone:before {
    content: "\f095"
}

.icon-twitter:before {
    content: "\f099"
}

.icon-facebook:before {
    content: "\f09a"
}

.icon-mail:before {
    content: "\f0e0"
}

.icon-linkedin:before {
    content: "\f0e1"
}

.icon-location-arrow:before {
    content: "\f124"
}

.icon-youtube:before {
    content: "\f16a"
}

.icon-user-o:before {
    content: "\f2c0"
}

.icon-time:before {
    content: "\e950"
}

.comments .h3 {
    color: #3c5063;
}

.comments .comment-list .comment {
    border-bottom: 1px solid #e1e4e7;
    padding: 30px 0;
}

.comments .comment-list .comment:last-child {
    border-bottom: 0;
}

.comments .comment-list .comment .stars {
    overflow: hidden;
    margin-bottom: 15px;
}

.comments .comment-list .comment .stars i {
    float: left;
    color: #472439;
    margin-right: 6px;
}

.comments .comment-list .comment .title {
    font-size: 16px;
    color: #3c5063;
    margin-bottom: 0px;
}

.comments .comment-list .comment .description {
    font-size: 14px;
    color: #6e6e6e;
    line-height: 18px;
}

.comments .comment-list .comment .description p {
    margin: 0;
}

.comments .form {
    background: #FFF;
    padding: 30px;
    border-radius: 6px;
    margin-top: 35px;
}

.comments .form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.comments .form .form-group.clearfix {
    margin-bottom: 15px;
}

.comments .form label {
    font-size: 16px;
    font-weight: 300;
    color: #3c5063;
    display: block;
    float: left;
    margin: 0 10px 0 0;
}

.comments .form .stars {
    overflow: hidden;
    float: left;
    margin-bottom: 0;
}

.comments .form .stars li {
    float: left;
    margin-right: 6px;
}

.comments .form .stars li i {
    color: #472439;
    font-size: 24px;
}

.comments .form .stars li.hover {
    cursor: pointer;
}

.comments .form .stars li.hover i {
    color: #9adbf5;
}

.comments .form i.input {
    font-size: 22px;
    color: #472439;
    position: absolute;
    left: 16px;
    top: 16px;
}

.comments .form input[type="text"] {
    width: 100%;
    padding: 0 20px 0 50px;
    border: 1px solid #e8e8e8;
    height: 55px;
    font-family: inherit;
    font-weight: 300;
    border-radius: 6px;
    color: inherit;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
}

.comments .form textarea {
    border: 1px solid #e8e8e8;
    width: 100%;
    height: 150px;
    font-family: inherit;
    font-weight: 300;
    border-radius: 6px;
    color: inherit;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 20px;
    resize: none;
    font-size: 16px;
}

.comments .form input[type="submit"] {
    height: 55px;
    line-height: 55px;
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: inherit;
    font-weight: 300;
    font-size: 16px;
}

.comments .form input[type="submit"]:hover {
    border-color: #472439;
}


.box-padding {
    padding: 30px;
}

.box-radius {
    border-radius: 6px;
}

.box-border {
    border: 1px solid #e4e4e4;
}

.box-shadow {
    box-shadow: 0 8px 16px 0 rgba(58, 95, 149, 0.1);
}




.add-btn-wrapper>button {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, .08);
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
    color: #3c5063;
    position: relative;
    cursor: pointer;
}

.add-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}



.blog-sidebar-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: center;
}

.blog-details img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.list-head {
    -webkit-box-shadow: 0px 10px 20px 0px #ececf3 !important;
    box-shadow: 0px 10px 20px 0px #ececf3 !important;
    background-color: #f8f4e8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid #eee;
}

h1,
.h1 {
    font-size: 24px;
}

h2,
.h2 {
    font-size: 22px
}

h3,
.h3 {
    font-size: 21px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 19px;
}

h6,
.h6 {
    font-size: 18px;
}

.breadcrumbs .breadcrumb {
    padding: 15px 0 20px;
    margin: 0;
}

.breadcrumbs .breadcrumb li {
    font-size: 14px;
    letter-spacing: -0.4px;
    margin-right: 10px;
    color: #472439;
}

.breadcrumbs .breadcrumb li.active {
    font-weight: bold;
    color: #333;
}

.breadcrumbs .breadcrumb li::before {
    color: #472439;
}

.breadcrumbs .breadcrumb a {
    color: #472439;
}

.breadcrumbs .breadcrumb a:hover {
    color: #000;
}


.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .list-head {
        min-height: inherit;
        padding: 20px 0;
    }
}

.list-head p {
    line-height: 1.5;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .list-head p {
        line-height: 1;
        text-align: center;
        font-size: 14px;
    }
}

.list-head .h2 {
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

@media (max-width: 991.98px) {
    .list-head .h2 {
        line-height: 2;
        white-space: normal;
    }
}

.list-head .dropdown {
    float: right;
}

@media (max-width: 991.98px) {
    .list-head .dropdown {
        margin: 10px 0;
        float: none;
        text-align: center;
    }
}

.list-head .dropdown p {
    float: left;
}

@media (max-width: 991.98px) {
    .list-head .dropdown p {
        float: none;
        font-size: 16px;
        line-height: 1.5;
        margin-right: 10px;
        display: inline;
    }
}

.list-head .dropdown .btn {
    margin: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.list-head .dropdown .btn::after {
    display: none;
}

.list-head .dropdown .btn i {
    margin: 4px 0 0 10px;
    float: right;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.list-head .dropdown .btn.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.list-head .dropdown .dropdown-menu {
    top: 80%;
    right: 0;
}

.footer-motto {
    min-width: 482px;
    background: #472439 url("./img/bg-footer-motto.webp");
}

@media (max-width: 991.98px) {
    .footer-motto {
        min-width: inherit;
        padding: 30px 0;
    }
}

.footer-motto .row {
    min-height: 482px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .footer-motto .row {
        min-height: inherit;
    }
}

.footer-motto p {
    width: 100%;
    font-size: 40px;
    line-height: 1.2;
    display: block;
    margin-bottom: 40px;
    color: #FFF;
}

@media (max-width: 991.98px) {
    .footer-motto p {
        text-align: center;
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

.footer-motto a {
    min-width: 200px;
    height: 54px;
    line-height: 54px;
    border: 1px solid #FFF;
    background: #472439;
    color: #FFF;
    font-size: 14px;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none;
}

.footer-motto a:hover {
    background: #FFF;
    color: #472439;
}

.mb-30 {
    margin-bottom: 30px;
}

.rate {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    height: 40px;
}

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

.comments .form {
    margin-top: 0;
}

.special-design-area p {
    font-size: 36px;
}

.special-design-area a,
.special-design-area button {
    font-size: 20px;
    padding: 0 30px;
    border-width: 1.5px;
}

.product-slider-area img {
    max-width: 100%;
    height: auto;
    border: 1.5px solid #e9e9e9;
    padding: 5px;
    border-radius: 5px;
}

.product-thumb-slider img {
    padding: 3px;
}

@media (max-width: 991.98px) {
    .list-head .dropdown .dropdown-menu {
        top: 100%;
    }
}

.order-button {
    background: #000000;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    padding: 15px 30px;
    min-width: 200px;
    margin-left: 50px;
    position: relative;
    border: none;
    outline: none;
    display: inline-flex;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .order-button {
        display: block;
        margin-left: 0;
        margin-top: 20px;
    }
}

.order-button:after {
    content: "\f061";
    font-weight: 900;
    font-family: "Font Awesome 7 Free";
    font-size: 14px;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.order-button:hover:after {
    right: 25px;
}


.product-detail .order-create .price span.old {
    color: #8C8C8C;
    text-decoration: line-through;
}

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

.product-detail .order-create .h3 {
    font-size: 24px;
    font-weight: 500;
}

.product-detail .order-create .location-search {
    position: relative;
    z-index: 98;
}

.product-detail .order-create .location-search .search {
    width: auto;
    background: #FFF;
    border-radius: 3px;
    -webkit-box-shadow: 0 5px 10px -8px;
    box-shadow: 0 5px 10px -8px;
}

.product-detail .order-create .location-search .search i {
    position: absolute;
    font-size: 20px;
}

.product-detail .order-create .location-search .search .icon-location-arrow {
    color: #472439;
    right: 20px;
    top: 14px;
}

.product-detail .order-create .location-search .search .icon-search {
    color: #ced6d7;
    left: 13px;
    top: 11px;
    font-size: 28px;
}

.product-detail .order-create .form .dates {
    overflow: hidden;
    margin-top: 20px;
}

.product-detail .order-create .form .dates ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    gap: 15px;
}

.simple-btn {
    background: #000000;
    color: #fff;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 4px;
    border: none;
}

.product-detail .order-create .form .dates li {
    flex: 1 1 calc(25% - 12px);
    min-width: 0;
}

@media (max-width: 991.98px) {
    .product-detail .order-create .form .dates li {
        flex: 1 1 calc(50% - 8px);
    }
}

.product-detail .order-create .form .dates li input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-detail .order-create .form .dates li label {
    display: block;
    width: 100%;
    height: 80px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    padding: 10px 0 0;
    margin: 0;
    background: #fff;
}

.product-detail .order-create .form .dates li label strong {
    font-weight: 500;
    font-size: 16px;
    display: block;
}

.product-detail .order-create .form .dates li label::after {
    width: auto;
    height: 4px;
    background: #472439;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.product-detail .order-create .form .dates li label:hover::after {
    opacity: 1;
}

.product-detail .order-create .form .dates li label.selected {
    color: #FFF;
    background: #f5bb18;
}

.product-detail .order-create .form .dates li label i {
    font-size: 26px;
}

.product-detail .order-create .form .dates li label.date-selector.date-selected {
    padding: 14px 15px 0;
    line-height: 18px;
}

@media (max-width: 991.98px) {
    .product-detail .order-create .form .dates li label.date-selector.date-selected {
        font-size: 12px;
    }
}

.product-detail .order-create .form .dates li .datepicker {
    display: none;
}

.product-detail .order-create .form .time-selector {
    display: block;
    margin: -10px 0 20px;
}

.product-detail .order-create .form .time-selector input {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    height: 40px;
    line-height: 40px;
    font-family: inherit;
    font-weight: 300;
    font-size: 12px;
    padding: 0 10px 0 40px;
    color: #151515;
    cursor: pointer;
    width: 200px;
}

.product-detail .order-create .form .time-selector .icon-time {
    position: absolute;
    z-index: 40;
    margin: 12px 0 0 12px;
    color: #472439;
}

.product-detail .order-create .price {
    width: 100%;
    padding: 15px;
    overflow: hidden;
    background: #FFF;
    border-radius: 3px;
    box-shadow: none;
    margin: 0 0 30px;
}

.product-detail .order-create .price span {
    display: inline-block;
    position: relative;
    font-size: 38px;
    color: #151515;
    width: auto;
}

.product-detail .order-create .price .price-wrap {
    width: 50%;
    float: left;
    display: inline-block;
}

.product-detail .order-create .price em {
    position: relative;
    display: block;
    width: 70px;
    height: 30px;
    margin: 10px 0 0 8px;
    float: right;
    font-size: 12px;
    font-style: normal;
}

.product-detail .order-create .price em i {
    display: block;
    font-style: normal;
    text-align: left;
}

.product-detail .order-create .price em i:last-child {
    margin-top: -2px;
}

.product-detail .order-create .price .cbtn {
    font-size: 18px;
    height: 55px;
    line-height: 55px;
    border-radius: 6px;
    text-decoration: none;
    float: right;
}

@media (max-width: 991.98px) {
    .product-detail .order-create .price .cbtn {
        height: auto;
        line-height: 30px;
        padding: 13px;
        width: 50%;
        text-align: center;
    }
}

.product-detail .order-create .price .cbtn:hover {
    background: #ea3163;
    color: #FFF;
}

.product-detail .order-create .price .price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-detail .order-create .form .dates li input:disabled+label {
    cursor: not-allowed;
    opacity: 0.5;
}

.product-detail .order-create .h3 {
    margin-bottom: 1rem;
}

.product-detail .order-create .price {
    margin-top: 20px;
}

.product-detail .order-create .form .time-selector select {
    border: 2px solid #000000;
    font-weight: bold;
}

.product-detail .order-create .form .time-selector {
    margin: -10px 0 30px;
}


.product-detail .order-create .location-search .search .icon-search {
    z-index: 1;
}

.product-detail .order-create .location-search .search .icon-location-arrow {
    z-index: 1;
}

/* Ürün detay sağ panel */

.product-detail .box {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-detail .product-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #271721;
}

.product-detail .box-product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.product-detail .list-product-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

.product-detail .list-product-details li span {
    font-weight: 600;
    color: #271721;
}

.product-detail .order-now-title {
    font-size: 16px;
    font-weight: 600;
    color: #472439;
    margin-bottom: 15px;
}

.product-detail .icon-list {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
}

.product-detail .icon-list .icon-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail .icon-list .icon-box i {
    font-size: 22px;
    color: #472439;
}

.product-detail .icon-list .icon-box .box-right {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #444;
}

.product-detail .icon-list .icon-box .box-right span {
    display: block;
    font-weight: 700;
    color: #271721;
}

.product-detail .payment-info {
    padding: 15px 20px;
    background: #fff;
    border-radius: 5px;
}

.product-detail .payment-info .payment-info-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #271721;
}

.product-detail .payment-info .payment-sub-info {
    font-size: 13px;
    color: #666;
}

@media (max-width: 991px) {
    .product-detail .icon-list {
        display: none;
    }

    .product-detail .payment-info {
        display: none;
    }
}

.text-theme {
    color: #472439;
}


.counter input[type='number'] {
    -moz-appearance: textfield;
}

.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
}

.extra-product-box {
    border: 1px solid #e9e9e9;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 10px 15px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.extra-product-box img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.extra-product-box-text {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #929da8;
    margin-bottom: 15px;
}

.extra-product-box .extra-product-box-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.extra-product-box .extra-product-box-price {
    display: block;
    font-style: normal;
    color: #3c5063;
    margin-top: 5px;
}

.extra-product-box .down,
.extra-product-box .up {
    height: 35px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    width: 35px;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, .08);
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
    color: #3c5063;
    position: relative;
    cursor: pointer;
}

.extra-product-box .counter-wrapper {
    display: flex;
    justify-content: center;
}

.extra-product-box .counter input {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, .08);
    background-color: #fff;
    color: #3c5063;
    text-align: center;
}

.extra-product-box .counter-wrapper>*+* {
    margin-left: 10px;
}

.extra-product-list>.row>div,
.vase-list>.row>div {
    margin-bottom: 20px;
}

.extra-product-box:hover {
    -webkit-box-shadow: 0 0 21px 0 rgba(0, 0, 0, .09);
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, .09);
    background-color: #fff;
}

.extra-product-box::after {
    width: auto;
    height: 4px;
    background: #472439;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.extra-product-box:hover::after {
    opacity: 1;
}

.extra-product-list {
    display: none;
}

.simple-bottom-border {
    border-bottom: 2px solid #472439;
    display: inline-block;
    padding-bottom: 5px;
}

.sticky-wrapper {
    position: sticky;
    top: 20px;
}


.extra-product-box.selected .add-btn-wrapper>button {
    background-color: #472439;
    color: #fff;
    font-weight: bold;
}

.add-btn-wrapper>button:focus {
    outline: none;
}

.vase-list .extra-product-box-text {
    margin-bottom: 5px;
}

.vase-list .extra-product-box img {
    margin-bottom: 5px;
}

.vase-list .extra-product-box {
    padding: 10px 15px;
}

.extra-product-box.selected::after {
    opacity: 1;
}

.extra-product-box.selected .add-btn-wrapper>button::after {
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #472439;
    font-size: 20px;
}

.time-selector select {
    -webkit-appearance: none;
}

.js-showMoreExtraProducts {
    background-color: #222;
}


.show-login-panel {
    margin-bottom: 30px;
}

.login-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    background: #FFF;
    min-width: 30%;
    z-index: 5000;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    right: -40%;
}

.login-panel .top .btn-close-panel {
    top: 0;
}

.login-panel .top .logo {
    padding: 10px;
    text-align: center;
    height: 20%;
    display: flex;
    justify-content: center;
}

.login-panel .panel {
    top: -75%;
}

.login-panel .content {
    top: -65%;
}

.login-panel.active {
    right: 0px;
}

.login-panel .top {
    width: 100%;
    height: 50%;
    background-clip: content-box;
    position: relative;
    z-index: 1;
    text-align: center;
}

.login-panel .top .btn-close-panel {
    color: #FFF;
    text-decoration: none;
    font-size: 60px;
    position: absolute;
    left: 10px;
    top: 40px;
}

.login-panel .bottom {
    width: 100%;
    height: 50%;
    background: #FFF;
    padding: 0 20px;
    position: relative;
}

.login-panel .panel {
    width: 95%;
    margin: auto;
    padding: 25px 0;
    background: #FFF;
    min-height: auto;
    position: relative;
    top: 0;
    -webkit-box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
    border: solid 1px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 85%;
}

.login-panel .panel::after {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    border-bottom: 5px solid #472439;
}

.login-panel .panel .btn-panel {
    width: 100%;
    min-height: calc(100% / 4);
    color: #FFF;
    border-radius: 5px;
    -webkit-box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    position: relative;
    outline: none;
    margin-bottom: 20px;
    white-space: nowrap;
    padding: 0 20px;
    max-width: 90%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.login-panel .panel .btn-panel:last-child {
    margin-bottom: 0;
}

.login-panel .panel .btn-panel span {
    position: relative;
}

.login-panel .panel .btn-panel i {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    top: 5px;
}

.login-panel .panel .btn-panel.uye-girisi {
    background: black;
}

.login-panel .panel .btn-panel.uye-girisi:hover {
    background: #ebb417;
}

.login-panel .panel .btn-panel.fb-login {
    background: #185aa3;
}

.login-panel .panel .btn-panel.fb-login:hover {
    background: #114177;
}

.login-panel .panel .btn-panel.uye-olmadan-devam {
    background: black;
}

.login-panel .panel .btn-panel.uye-olmadan-devam:hover {
    background: #e3ad16;
}

.login-panel .content {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-panel .content .h4 {
    font-size: 24px;
}

.login-panel .content p {
    font-size: 16px;
    line-height: 1.4;
}

.login-panel .content img {
    margin: 20px 0;
}

.login-panel .content strong {
    display: block;
}

.ico-font-family,
.florist-wrapper.panel .menu li a::after {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.login {
    background: #FFF url("./img/bg-login.png") right top no-repeat;
}

body.panel {
    background: #FFF url("./img/bg-login.png") right top no-repeat;
}

.login-panel {
    right: -999%;
}

.login-panel .top .btn-close-panel {
    font-size: 40px;
    left: 10px;
    display: flex;
    top: 0;
}

.login-panel .top .logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}


.sub-item-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sub-item-box img {
    max-height: 90px;
    width: auto;
    border-radius: 4px;
}

.date-selector {
    margin-bottom: 15px;
}


.ico-font-family,
.florist-wrapper.panel .menu li a::after {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.process {
    background: #eff2f9;
    min-height: 160px;
    margin-bottom: 60px;
    position: relative;
}

@media (max-width: 991.98px) {
    .process {
        margin-bottom: 20px;
        min-height: inherit;
    }

    .process .main {
        display: none;
    }
}

.process ul {
    position: relative;
    overflow: hidden;
    margin: 38px 0;
}

@media (max-width: 991.98px) {
    .process ul {
        margin: 20px 0;
    }
}

.process ul::after {
    width: calc(100% - 100px);
    height: 4px;
    background: #dce2ee;
    content: ' ';
    display: block;
    position: absolute;
    margin: 18px 0 0 50px;
    z-index: 100;
}

@media (max-width: 991.98px) {
    .process ul::after {
        margin: 13px 0 0 50px;
    }
}

.process li {
    position: relative;
    z-index: 200;
    width: calc(100% / 3);
    float: left;
    text-align: center;
    color: #bec2ca;
}

.process li div {
    width: auto;
    text-align: center;
    display: inline-block;
}

.process li i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #dce2ee;
    display: inline-block;
    color: #FFF;
    font-weight: 600;
    font-size: 20px;
    font-style: normal;
    margin-bottom: 10px;
    position: relative;
    z-index: 150;
}

@media (max-width: 991.98px) {
    .process li i {
        width: 30px;
        height: 30px;
    }
}

.process li i::before {
    width: 40px;
    height: 40px;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url("./img/check.png") center center no-repeat;
    display: none;
}

@media (max-width: 991.98px) {
    .process li i::before {
        width: 30px;
        height: 30px;
    }
}

.process li span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #dce2ee;
}

@media (max-width: 991.98px) {
    .process li span {
        font-size: 14px;
    }
}

.process li.active i {
    width: 40px;
    height: 40px;
    background: #FFF;
    border: 5px solid #472439;
}

@media (max-width: 991.98px) {
    .process li.active i {
        width: 30px;
        height: 30px;
    }
}

.process li.active span {
    color: #3c5063;
}

.process li.done i {
    background: #472439;
}

.process li.done i::before {
    display: block;
}

.process li.done span {
    color: #472439;
}

.process li:nth-child(1) {
    text-align: left;
}

.process li:nth-child(1).done::before {
    width: calc(50% + 50px);
    height: 4px;
    background: #472439;
    display: block;
    content: ' ';
    position: absolute;
    top: 18px;
    left: 50px;
}

@media (max-width: 991.98px) {
    .process li:nth-child(1).done::before {
        top: 13px;
    }
}

.process li:nth-child(1).done::after {
    width: calc(100%);
    height: 4px;
    background: #472439;
    display: block;
    content: ' ';
    position: absolute;
    top: 18px;
    right: -50%;
}

@media (max-width: 991.98px) {
    .process li:nth-child(1).done::after {
        top: 13px;
    }
}

.process li:nth-child(2).done::before {
    width: calc(50% + 50px);
    height: 4px;
    background: #472439;
    display: block;
    content: ' ';
    position: absolute;
    top: 18px;
    left: 50%;
}

@media (max-width: 991.98px) {
    .process li:nth-child(2).done::before {
        top: 13px;
    }
}

.process li:nth-child(2).done::after {
    width: calc(100%);
    height: 4px;
    background: #472439;
    display: block;
    content: ' ';
    position: absolute;
    top: 18px;
    right: calc(-100% + 50px);
}

@media (max-width: 991.98px) {
    .process li:nth-child(2).done::after {
        top: 13px;
    }
}

.process li:nth-child(3) {
    text-align: right;
}

.process .pay-status {
    width: 100%;
    min-height: 160px;
    position: absolute;
    z-index: 1000;
    top: 0;
}

@media (max-width: 991.98px) {
    .process .pay-status {
        min-height: inherit;
        position: relative;
    }
}

.process .pay-status .status {
    width: 100%;
    min-height: 160px;
    overflow: hidden;
    padding: 20px 0;
}

@media (max-width: 991.98px) {
    .process .pay-status .status {
        min-height: inherit;
    }
}

.process .pay-status .icon {
    float: left;
}

@media (max-width: 991.98px) {
    .process .pay-status .icon {
        width: 50px;
        height: 50px;
    }

    .process .pay-status .icon img {
        width: 100%;
    }
}

.process .pay-status .text {
    float: left;
    margin-left: 30px;
    padding: 30px 0 0;
}

@media (max-width: 991.98px) {
    .process .pay-status .text {
        width: calc(100% - 65px);
        padding: 0;
        margin-left: 15px;
    }
}

.process .pay-status .text .h4 {
    font-size: 24px;
    line-height: 1;
    color: #FFF;
}

@media (max-width: 991.98px) {
    .process .pay-status .text .h4 {
        font-size: 20px;
    }
}

.process .pay-status .text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 20px;
}

@media (max-width: 991.98px) {
    .process .pay-status .text p {
        font-size: 14px;
        margin: 0;
    }
}

.process .pay-status .declined {
    background-image: -webkit-gradient(linear, left top, right top, from(#ec5857), to(#f3994a));
    background-image: linear-gradient(to right, #ec5857, #f3994a);
}

.process .pay-status .success {
    background-image: -webkit-gradient(linear, left top, right top, from(#229754), to(#6ecf96));
    background-image: linear-gradient(to right, #229754, #6ecf96);
}


i[class^="i-"],
i[class*=" i-"] {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    display: block;
}

i.i-flow {
    width: 30px;
    height: 37px;
    background: url("./img/icons/icon-flov.png");
}

i.i-ship {
    width: 40px;
    height: 25px;
    background: url("./img/icons/icon-ship.png");
}

i.i-love {
    width: 29px;
    height: 25px;
    background: url("./img/icons/icon-love.png");
}

i.i-alarm {
    width: 26px;
    height: 25px;
    background: url("./img/icons/icon-alarm.png");
}

i.i-uye-girisi {
    width: 28px;
    height: 25px;
    background: url("./img/icons/icon-uye-girisi.png");
}

i.i-facebook {
    width: 25px;
    height: 25px;
    background: url("./img/icons/icon-facebook.png");
}

i.i-uye-olmadan-giris {
    width: 30px;
    height: 25px;
    background: url("./img/icons/icon-uye-olmadan-giris.png");
}

i[class^="si-"],
i[class*=" si-"] {
    background-repeat: no-repeat !important;
    background-position: left top !important;
    display: block;
}

.si-ship {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-siparis-takip.png");
}

.si-uyelik {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-uyelik-bilgileri.png");
}

.si-hatirlatma-servisi {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-hatirlatma-servisi.png");
}

.si-kayitli-kartlarim {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-kayitli-kartlarim.png");
}

.si-sifre-degistir {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-sifre-degistir.png");
}

.si-hediye-ceklerim {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-hediye-ceklerim.png");
}

.si-iletisim-izinleri {
    width: 32px;
    height: 20px;
    background: url("./img/icons/icon-iletisim-izni.png");
}

::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #929DA8;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #929DA8;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #929DA8;
    opacity: 1;
    /* Firefox */
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #929DA8;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #929DA8;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #929DA8;
}

a {
    color: #3c5063;
}

a:hover {
    color: #472439;
}

.form-wrapper .form-group {
    margin-bottom: 20px;
}

.form-wrapper .form-group:last-child {
    margin-bottom: 0;
}

.form-wrapper .form-group .form-element[type=text],
.form-wrapper .form-group .form-element[type=email],
.form-wrapper .form-group .form-element[type=password],
.form-wrapper .form-group .form-element.textarea,
.form-wrapper .form-group .form-element.selectbox {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    background-color: #FFF;
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    outline: none;
    color: #3c5063;
}

.form-wrapper .form-group .form-element[type=text].error,
.form-wrapper .form-group .form-element[type=password].error,
.form-wrapper .form-group .form-element.textarea.error,
.form-wrapper .form-group .form-element.selectbox.error {
    border-color: #fa4a4d;
}

.form-wrapper .form-group .form-element[type=text].error:hover,
.form-wrapper .form-group .form-element[type=text].error:focus,
.form-wrapper .form-group .form-element[type=password].error:hover,
.form-wrapper .form-group .form-element[type=password].error:focus,
.form-wrapper .form-group .form-element.textarea.error:hover,
.form-wrapper .form-group .form-element.textarea.error:focus,
.form-wrapper .form-group .form-element.selectbox.error:hover,
.form-wrapper .form-group .form-element.selectbox.error:focus {
    border-color: #fa4a4d;
}

.form-wrapper .form-group .form-element[type=text]:hover,
.form-wrapper .form-group .form-element[type=text]:focus,
.form-wrapper .form-group .form-element[type=email]:hover,
.form-wrapper .form-group .form-element[type=email]:focus,
.form-wrapper .form-group .form-element[type=password]:hover,
.form-wrapper .form-group .form-element[type=password]:focus,
.form-wrapper .form-group .form-element.textarea:hover,
.form-wrapper .form-group .form-element.textarea:focus,
.form-wrapper .form-group .form-element.selectbox:hover,
.form-wrapper .form-group .form-element.selectbox:focus {
    border-color: #3c5063;
}

.form-wrapper .form-group .form-element[type=text].with-icon,
.form-wrapper .form-group .form-element[type=email].with-icon,
.form-wrapper .form-group .form-element[type=password].with-icon,
.form-wrapper .form-group .form-element.textarea.with-icon,
.form-wrapper .form-group .form-element.selectbox.with-icon {
    padding-left: 55px;
    background-position: 16px center;
    background-repeat: no-repeat;
}

.form-wrapper .form-group .form-element[type=text].with-icon.user,
.form-wrapper .form-group .form-element[type=password].with-icon.user,
.form-wrapper .form-group .form-element.textarea.with-icon.user,
.form-wrapper .form-group .form-element.selectbox.with-icon.user {
    background-image: url("./img/icons/icon-user.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.email,
.form-wrapper .form-group .form-element[type=email].with-icon.email,
.form-wrapper .form-group .form-element[type=password].with-icon.email,
.form-wrapper .form-group .form-element.textarea.with-icon.email,
.form-wrapper .form-group .form-element.selectbox.with-icon.email {
    background-image: url("./img/icons/icon-email.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.password,
.form-wrapper .form-group .form-element[type=password].with-icon.password,
.form-wrapper .form-group .form-element.textarea.with-icon.password,
.form-wrapper .form-group .form-element.selectbox.with-icon.password {
    background-image: url("./img/icons/icon-password.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.receiver,
.form-wrapper .form-group .form-element[type=password].with-icon.receiver,
.form-wrapper .form-group .form-element.textarea.with-icon.receiver,
.form-wrapper .form-group .form-element.selectbox.with-icon.receiver {
    background-image: url("./img/icons/icon-receiver.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.address,
.form-wrapper .form-group .form-element[type=password].with-icon.address,
.form-wrapper .form-group .form-element.textarea.with-icon.address,
.form-wrapper .form-group .form-element.selectbox.with-icon.address {
    background-image: url("./img/icons/icon-address.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.phone,
.form-wrapper .form-group .form-element[type=password].with-icon.phone,
.form-wrapper .form-group .form-element.textarea.with-icon.phone,
.form-wrapper .form-group .form-element.selectbox.with-icon.phone {
    background-image: url("./img/icons/icon-phone.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.credit-card,
.form-wrapper .form-group .form-element[type=password].with-icon.credit-card,
.form-wrapper .form-group .form-element.textarea.with-icon.credit-card,
.form-wrapper .form-group .form-element.selectbox.with-icon.credit-card {
    background-image: url("./img/icons/icon-credit-card.png");
}

.form-wrapper .form-group .form-element.textarea {
    min-height: 160px;
    resize: none;
    background-position: 16px 16px !important;
    padding-top: 15px;
    padding-bottom: 15px;
}

.form-wrapper .form-group .form-element.checkbox,
.form-wrapper .form-group .form-element.radio {
    overflow: hidden;
    /* style label */
    /* toggle hover */
    /* toggle on */
}

.form-wrapper .form-group .form-element.checkbox.big,
.form-wrapper .form-group .form-element.radio.big {
    margin: 12px 0 0;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty,
.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty {
    margin-left: -9999px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label,
.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty~label,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty~label {
    position: relative;
    float: left;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 24px;
    margin-left: 1px;
    font-size: 12px;
    color: #475a6c;
    line-height: 20px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label {
    font-size: 16px;
    padding-left: 32px;
    line-height: 26px;
}

.form-wrapper .form-group .form-element.checkbox.big input[type=checkbox]:empty~label,
.form-wrapper .form-group .form-element.radio.big input[type=checkbox]:empty~label {
    font-size: 16px;
    padding-left: 32px;
    line-height: 26px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label:before {
    position: absolute;
    display: block;
    top: 3px;
    bottom: 0;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: #FFF;
    border-radius: 50%;
    border: 1px solid #E9E9E9;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty~label:before {
    position: absolute;
    display: block;
    top: 3px;
    bottom: 0;
    left: 0;
    content: '';
    width: 15px;
    height: 15px;
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #E9E9E9;
}

.form-wrapper .form-group .form-element.checkbox.big input[type=checkbox]:empty~label:before,
.form-wrapper .form-group .form-element.radio.big input[type=checkbox]:empty~label:before {
    width: 20px;
    height: 20px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty.error~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty.error~label:before {
    -webkit-box-shadow: 0 0 0 1px #fa4a4d;
    box-shadow: 0 0 0 1px #fa4a4d;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty.error~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty.error~label:before {
    border-color: #fa4a4d;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label:before {
    border-radius: 50%;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty~label:before {
    border-radius: 5px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:hover:not(:checked)~label:before,
.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:hover:not(:checked)~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:hover:not(:checked)~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:hover:not(:checked)~label:before {
    background: white;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:checked~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:checked~label:before {
    background: #472439 url("./img/bg-radio.png") center center no-repeat;
    border: 0;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:checked~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:checked~label:before {
    background: #472439 url("./img/tick.png") center center no-repeat;
    border-color: #472439;
}

.form-wrapper .form-group span.error {
    font-size: 13px;
    font-weight: 300;
    color: #fa4a4d;
}

.form-wrapper .form-group .custom-selectbox {
    position: relative;
}

.form-wrapper .form-group .custom-selectbox select:invalid {
    color: #929DA8 !important;
}

.form-wrapper .form-group .custom-selectbox::after {
    width: 48px;
    height: 48px;
    content: '';
    display: block;
    background: #FFF url("./img/icons/icon-arrow-down.png") center center no-repeat;
    position: absolute;
    right: 1px;
    top: 1px;
    border-radius: 50%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.form-wrapper .form-group .custom-selectbox.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.btn-big {
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    background: #472439;
    padding: 0 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    position: relative;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.block {
    display: block;
}

.btn-big :hover {
    background: #ea3163;
    color: #FFF;
}

.btn-big i[class^="icon-"],
.btn-big i[class*=" icon-"] {
    color: #FFF;
    position: absolute;
    left: 23px;
    top: 13px;
    font-size: 20px;
}

.btn-big .next::after {
    content: '';
    width: 19px;
    height: 15px;
    display: inline-block;
    background: url("./img/icons/arrow-right.png");
    margin: 0 0 0 32px;
}

.btn-big .prev {
    background: none;
    color: #475a6c;
    padding-left: 0;
}

.btn-big .prev::before {
    content: '';
    width: 19px;
    height: 15px;
    display: inline-block;
    background: url("./img/icons/arrow-left.png");
    margin: 0 32px 0 0;
}

@media (max-width: 991.98px) {
    .florist-wrapper.login {
        padding: 30px 0;
    }

    .florist-wrapper.login .vh-100 {
        height: inherit !important;
    }
}

@media (max-width: 991.98px) {
    .florist-wrapper.login .login-text {
        margin-bottom: 40px;
    }
}

.florist-wrapper.login .login-text .title {
    font-size: 36px;
    color: #3c5063;
    margin-bottom: 10px;
}

.florist-wrapper.login .login-text .title strong {
    font-weight: 700;
}

.florist-wrapper.login .login-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #929DA8;
}

.florist-wrapper.login .login-text.why {
    margin-top: 70px;
}

.florist-wrapper.login .login-text.why .title {
    font-size: 24px;
}

.florist-wrapper.login .login-text.why ul li {
    line-height: 25px;
    font-size: 16px;
    color: #929DA8;
    margin-bottom: 20px;
}

.florist-wrapper.login .login-text.why ul li i {
    float: left;
    min-width: 40px;
    margin-right: 16px;
}

.florist-wrapper.login .login-form {
    padding: 32px 65px;
}

@media (max-width: 991.98px) {
    .florist-wrapper.login .login-form {
        padding: 16px 32px 24px;
    }
}

.florist-wrapper.login .login-form .title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: #3c5063;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 991.98px) {
    .florist-wrapper.login .login-form .title {
        margin-bottom: 16px;
    }
}

.florist-wrapper.login .login-form .form-group {
    clear: both;
    overflow: hidden;
}

.florist-wrapper.login .login-form .radio {
    float: left;
    margin-right: 30px;
}

.florist-wrapper.login .btn.fb-login {
    background: #185aa3;
    margin: 30px 65px;
}

.florist-wrapper.login .btn.fb-login:hover {
    background: #114177;
}

@media (max-width: 991.98px) {
    .florist-wrapper.login .btn.fb-login {
        margin: 30px 32px 0;
    }
}

.view {
    padding-bottom: 30px;
}

.view .box-title {
    min-height: 50px;
    margin-bottom: 30px;
}

.view .box-title .h3 {
    font-size: 24px;
    color: #3c5063;
    line-height: 1;
}

.view .box-title .h4 {
    font-size: 21px;
    color: #3c5063;
    line-height: 1;
    margin: 0;
    padding-top: 28px;
}

.view .box-title p {
    font-size: 16px;
    line-height: 1;
    color: #929DA8;
    margin: 0;
}

.view .box {
    padding: 30px;
}

.view .box-after {
    padding: 30px 0;
}

.view .box-after .btn.next {
    float: right;
}

@media (max-width: 991.98px) {
    .view .box-after .btn.next {
        float: none;
        display: block;
    }
}

@media (max-width: 991.98px) {
    .view .box-after .btn.prev {
        margin-bottom: 20px;
    }
}

.view .box-after .form-wrapper {
    margin: 0 0 20px;
    text-align: center;
}

.view .box-after .form-wrapper .form-element {
    display: inline-block;
}

.view .box-after .form-wrapper .form-element label {
    text-align: left;
}

@media (max-width: 991.98px) {

    .view .box-after .label,
    .view .box-after .price {
        text-align: center !important;
    }
}

.view .product-list {
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.view .product-list.order-success {
    border-top: 1px solid #E9E9E9;
    padding-top: 32px;
    margin-top: 32px;
}

.view .product-list .product {
    margin: 0 0 30px;
}

.view .product-list .product .img {
    padding: 10px;
    border: 1px solid #E9E9E9;
    display: inline-block;
    border-radius: 5px;
    position: relative;
    float: left;
    margin-right: 15px;
}

.view .product-list .product .img img {
    width: 46px;
    height: 46px;
}

.view .product-list .product .img span {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #472439;
    color: #FFF;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    right: -12px;
    top: -12px;
}

.view .product-list .product p {
    float: left;
    line-height: 24px;
    font-size: 16px;
    color: #3c5063;
}

.view .product-list .product p span {
    color: #929DA8;
    display: block;
    font-size: 14px;
}

.view .product-list .product .price {
    text-align: right;
    font-size: 16px;
    color: #3c5063;
    padding-right: 0;
    line-height: 65px;
}

.view .product-list .product:last-child {
    margin-bottom: 0;
}

.view .address-and-note {
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.view .address-and-note ul {
    margin: -3px 0 0;
    padding: 0;
}

.view .address-and-note ul li {
    margin-bottom: 20px;
}

.view .address-and-note ul li:last-child {
    margin: 0;
}

.view .address-and-note ul li .h5 {
    color: #3c5063;
    font-size: 16px;
    margin-bottom: 5px;
}

.view .address-and-note ul li p {
    color: #929DA8;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}

.view .discount-code {
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.view .discount-code .form-element {
    height: 45px !important;
}

.view .discount-code .btn {
    height: 45px;
    line-height: 45px;
}

.view .total-price {
    margin-bottom: 32px;
}

.view .total-price .label {
    color: #3c5063;
    font-size: 16px;
}

.view .total-price .label span {
    color: #929DA8;
    font-size: 14px;
    display: block;
}

.view .total-price .price {
    text-align: right;
    color: #3c5063;
    font-size: 16px;
    line-height: 45px;
}

.view .total-price .price span {
    font-size: 20px;
}

.view .total-price.centered .label {
    text-align: right;
}

.view .total-price.centered .price {
    text-align: left;
    font-size: 22px;
}

.view .total-price.centered .price span {
    font-size: 32px;
}

.view .box-button {
    text-align: center;
}

.view .extra-product-list .product {
    width: 100%;
    min-height: auto;
    border: 1px solid #E9E9E9;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 30px;
}

.view .extra-product-list .product:hover {
    -webkit-box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.09);
    background-color: #ffffff;
}

.view .extra-product-list .product:hover .btn-wrapper span::after {
    opacity: 1;
}

.view .extra-product-list .product a {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: block;
    padding: 10px;
    text-decoration: none;
}

.view .extra-product-list .product .img {
    display: block;
    margin-bottom: 20px;
}

.view .extra-product-list .product .img img {
    width: 100%;
    height: auto;
}

.view .extra-product-list .product .text {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #929DA8;
    line-height: 24px;
}

.view .extra-product-list .product .text .title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 50px;
    text-align: center;
}

.view .extra-product-list .product .text em {
    display: block;
    font-style: normal;
    color: #3c5063;
    margin-top: 10px;
}

.view .extra-product-list .product .btn-wrapper {
    display: block;
    text-align: center;
    margin: 15px 0 5px;
}

.view .extra-product-list .product .btn-wrapper span {
    height: 35px;
    line-height: 30px;
    display: inline-block;
    padding: 0 30px;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    color: #3c5063;
    position: relative;
}

.view .extra-product-list .product .btn-wrapper span::after {
    width: auto;
    height: 4px;
    background: #472439;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.view .box.payment-box {
    padding: 0;
}

.view .box.payment-box .titles.form-group {
    margin-bottom: 0 !important;
}

.view .box.payment-box .titles .form-element {
    border-bottom: 1px solid #E9E9E9;
    padding: 0 35px;
    height: 55px;
}

@media (max-width: 991.98px) {
    .view .box.payment-box .titles .form-element {
        padding: 0 20px;
    }
}

.view .box.payment-box .titles .form-element label {
    margin-top: 14px;
    width: 100%;
}

.view .box.payment-box .titles .form-element label .cards {
    width: 153px;
    height: 40px;
    background: url("./img/icon-payment-card.png");
    display: block;
    right: -10px;
    top: -8px;
}

@media (max-width: 991.98px) {
    .view .box.payment-box .titles .form-element label .cards {
        display: none;
    }
}

.view .box.payment-box .titles .form-element label .cards {
    position: absolute;
}

.view .box.payment-box .payment-contents .payment {
    display: none;
    padding: 40px;
}

@media (max-width: 991.98px) {
    .view .box.payment-box .payment-contents .payment {
        padding: 20px;
    }
}

.view .box.payment-box .payment-contents .payment.block {
    display: block;
}

@media (max-width: 991.98px) {
    .view .box.payment-box .payment-contents .payment .bank-list {
        padding: 0 20px;
    }
}

.bank-list .bank {
    overflow: hidden;
}

.bank-list .bank .bank-logo {
    width: 160px;
    height: 160px;
    border: 1px solid #E9E9E9;
    border-radius: 15px;
    padding: 60px 15px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .bank-list .bank .bank-logo {
        width: 100%;
        margin-bottom: 15px;
    }
}

.bank-list .bank .bank-logo img {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .bank-list .bank .bank-info {
        padding: 0;
    }
}

.bank-list .bank .bank-info .h4 {
    color: #3c5063;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
}

.bank-list .bank .bank-info ul {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .bank-list .bank .bank-info ul {
        margin-bottom: 0;
    }
}

.bank-list .bank .bank-info ul li {
    float: left;
    width: 70%;
    color: #929DA8;
    font-size: 16px;
    margin-bottom: 10px;
}

.bank-list .bank .bank-info ul li .h5 {
    color: #3c5063;
    font-size: inherit;
    margin-bottom: 5px;
    line-height: 1.4;
}

.bank-list .bank .bank-info ul li:nth-child(even) {
    width: 30%;
}

@media (max-width: 991.98px) {
    .bank-list .bank .bank-info ul li:nth-child(even) {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .bank-list .bank .bank-info ul li {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .view .box.payment-box .payment-contents .payment .jp-card {
        min-width: inherit;
    }
}

.view .box.payment-box .payment-contents .payment .card-wrapper {
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .view .box.payment-box .payment-contents .payment .card-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 991.98px) {
    .view .box.payment-box .payment-contents .payment .name {
        margin-bottom: 20px;
    }

    .view .box.payment-box .payment-contents .payment .p-0 {
        padding-left: 15px !important;
    }
}

.view .order-detail-info .h4 {
    font-size: 16px;
    color: #3c5063;
    margin-bottom: 5px;
}

.view .order-detail-info p {
    color: #929DA8;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
}

.view .order-detail-info .user-detail {
    margin-top: 30px;
}

.view .order-detail-info .user-detail a {
    color: #472439;
}

.view .cargo-track {
    border-radius: 5px;
    border: solid 3px #472439;
    padding: 30px 10px;
    display: block;
    margin: 32px 0 0;
    overflow: hidden;
}

.view .cargo-track .left {
    width: 25%;
    float: left;
}

.view .cargo-track .left img {
    width: 100%;
    margin-top: 20px;
}

.view .cargo-track .right {
    width: 70%;
    float: right;
}

.view .cargo-track .right .h4 {
    font-size: 14px;
    color: #3c5063;
}

.view .cargo-track .right .input {
    position: relative;
}

.view .cargo-track .right input {
    color: inherit;
    border: 0;
    border-bottom: 1px solid #C5C6CF;
    padding-right: 20px;
    width: 100%;
}

.view .cargo-track .right .track-btn {
    width: 20px;
    height: 20px;
    background: url("./img/icons/arrow-left.png") no-repeat;
    display: block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 0;
    right: 0;
    border: none;
    outline: none;
    position: absolute;
    cursor: pointer;
}


.florist-wrapper.panel {
    margin: 100px 0;
}

.florist-wrapper.panel .menu {
    margin: 5px;
}

.florist-wrapper.panel .menu li {
    margin-bottom: 5px;
}

.florist-wrapper.panel .menu li a {
    line-height: 50px;
    font-size: 16px;
    color: #3c5063;
    padding: 0 20px;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    position: relative;
}

.florist-wrapper.panel .menu li a i {
    float: left;
    margin: 16px 15px 0 0;
    width: 32px;
    height: 20px;
}

.florist-wrapper.panel .menu li a::after {
    content: "\e906";
    color: #3c5063;
    right: 20px;
    top: 15px;
    position: absolute;
    font-size: 20px;
}

.florist-wrapper.panel .menu li a:hover {
    text-decoration: underline;
}

.florist-wrapper.panel .menu li.active a {
    background: #472439;
    color: #FFF;
}

.florist-wrapper.panel .menu li.active a:hover {
    text-decoration: none;
}

.florist-wrapper.panel .menu li.active a::after {
    color: #FFF;
}

.florist-wrapper.panel .menu li.active a i {
    background-position: left bottom !important;
}

.florist-wrapper.panel .box.right {
    padding: 20px;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right {
        margin-top: 30px;
    }
}

.florist-wrapper.panel .box.right.order-detail .img {
    width: 100%;
    height: auto;
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    padding: 30px;
}

.florist-wrapper.panel .box.right.order-detail .img img {
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right.order-detail .img {
        margin-bottom: 20px;
    }
}

.florist-wrapper.panel .box.right.order-detail .h3 {
    font-size: 18px;
    color: #3c5063;
    margin-bottom: 10px;
}

.florist-wrapper.panel .box.right.order-detail p {
    line-height: 25px;
    font-size: 16px;
    color: #929DA8;
    margin-bottom: 10px;
}

.florist-wrapper.panel .box.right.order-detail p a {
    color: #472439;
    text-decoration: none;
}

.florist-wrapper.panel .box.right.order-detail p a:hover {
    color: #ea3163;
}

.florist-wrapper.panel .box.right.order-detail .status {
    width: auto;
    text-align: center;
    float: left;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right.order-detail .status {
        float: none;
    }
}

.florist-wrapper.panel .box.right.order-detail .status i {
    display: inline-block;
    margin-bottom: 10px;
}

.florist-wrapper.panel .box.right.order-detail .status span {
    display: block;
    font-size: 16px;
    color: #3c5063;
}

.florist-wrapper.panel .box.right.order-detail .status.teslim-edildi i {
    width: 50px;
    height: 50px;
    background: url("./img/icons/icon-teslim-edildi.png");
}

.florist-wrapper.panel .box.right.order-detail .status.iptal-edildi i {
    width: 50px;
    height: 50px;
    background: url("./img/icons/icon-iptal-edildi.png");
}

.florist-wrapper.panel .box.right.order-detail .status.hazirlaniyor i {
    width: 51px;
    height: 50px;
    background: url("./img/icons/icon-hazirlaniyor.png");
}

.florist-wrapper.panel .box.right.order-detail .status.yola-cikti i {
    width: 74px;
    height: 45px;
    background: url("./img/icons/icon-yola-cikti.png");
}

.florist-wrapper.panel .box.right.order-detail .status.teslim-zamani-bekleniyor i {
    width: 40px;
    height: 45px;
    background: url("./img/icons/icon-teslim-zamani-bekliyor.png");
}

.florist-wrapper.panel .box.right.order-detail dl {
    overflow: hidden;
}

.florist-wrapper.panel .box.right.order-detail dl dt,
.florist-wrapper.panel .box.right.order-detail dl dd {
    font-size: 16px;
    color: #3c5063;
    line-height: 30px;
    float: left;
}

.florist-wrapper.panel .box.right.order-detail dl dt {
    width: 41.66667%;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right.order-detail dl dt {
        width: 100%;
    }
}

.florist-wrapper.panel .box.right.order-detail dl dt span {
    float: right;
    margin-right: 20px;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right.order-detail dl dt span {
        display: none;
    }
}

.florist-wrapper.panel .box.right.order-detail dl dd {
    width: 58.33333%;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right.order-detail dl dd {
        width: 100%;
    }
}

.florist-wrapper.panel .box.right.order-detail .list-invoice {
    overflow: hidden;
    margin: 0;
}

.florist-wrapper.panel .box.right.order-detail .list-invoice li {
    width: 33.33333%;
    float: left;
}

@media (max-width: 991.98px) {
    .florist-wrapper.panel .box.right.order-detail .list-invoice li {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}

@media(min-width: 992px) {
    .product:hover .product-hover-image {
        opacity: 1 !important;
    }
}

@media(max-width: 992px) {

    .login-panel .top .btn-close-panel {
        font-size: 25px;
        left: 10px;
        display: flex;
        top: 5px;
    }

    .mobile-hidden {
        display: none;
    }

    .product-slider-area {
        margin: 10px 0 40px;
    }

    .bread-item i {
        margin-left: 15px;
        margin-right: 15px;
    }

    .bread-item {
        display: inline-flex;
        align-items: center;
    }

    .bread-item:nth-child(2) {
        display: none;
    }

    .js-bread-list {
        display: none;
        background-color: #fdfdfe;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 25px 20px 30px 20px;
        font-size: 12px;
        z-index: 2;
    }

    .mobile-bread {
        display: flex;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 0px;
        align-items: center;
    }

    .bread-item {
        display: none;
    }

    .bread-item:first-child {
        display: inline-flex;
    }

    .bread-item:last-child {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .breadcrumb-list {
        padding-top: 10px;
    }

    .bread-item:nth-child(2) {
        display: inline-flex;
    }

    .js-bread-list .bread-item {
        display: block;
    }

    .js-bread-list .bread-item:nth-child(2) {
        margin-left: 10px;
    }

    .js-bread-list .bread-item:nth-child(3) {
        margin-left: 20px;
    }

    .js-bread-list .bread-item:nth-child(4) {
        margin-left: 30px;
    }

    .js-bread-list .bread-item+.bread-item {
        margin-top: 20px;
    }

    .bread span {
        margin: 0px;
    }

    .js-bread-list .close-btn {
        position: absolute;
        top: 20px;
        right: 50px;
    }

    .bread-main-title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .breadcrumb-wrapper {
        position: relative;
    }

    .breadcrumb-area {
        margin-bottom: 10px;
    }

    .bread-item a {
        color: inherit;
    }
}


.florist-wrapper.login .login-form .radio {
    float: left;
    margin-right: 30px;
    width: auto;
    border: none;
}

.form-wrapper .form-group .form-element.checkbox,
.form-wrapper .form-group .form-element.radio {
    border: none;
    margin-bottom: 0;
    padding: 0;
    height: auto;
}

.login .form-wrapper .form-group .form-element.checkbox {
    margin-bottom: 0;
    height: auto;
}

.login .form-element {
    margin-bottom: 0;
    outline: none;
}

.sidebar-product-wrapper-title {
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 3px solid #472439;
    display: inline-block;
}

.only-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
}

.breadcrumb-area {
    background: url('../images/breadcrumb-bg.webp') center/cover no-repeat;
    padding: 20px 0;
}

.breadcrumb-area+.login {
    margin-top: -30px;
}

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

.sidebar-product .right {
    white-space: nowrap;
    flex: 0 0 auto;
}

.sidebar-product .left {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.sidebar-product .left p {
    margin-bottom: 0;
}

.margin-zero {
    margin: 0 !important;
}

.order-box-wrapper .box+.box {
    margin-top: 30px;
}

.form-wrapper .form-group .form-element {
    margin-bottom: 0;
}

.view .address-and-note ul+.total-price {
    margin-bottom: 0;
    margin-top: 15px;
}

.form-wrapper .form-group .form-element:disabled {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

.btn-big.next,
.btn.prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-big.next::after {
    content: '';
    width: 19px;
    height: 15px;
    display: inline-block;
    background: url(./img/icons/arrow-right.png);
    margin: 0 0 0 32px;
}

.btn.prev::before {
    content: '';
    width: 19px;
    height: 15px;
    display: inline-block;
    background: url(./img/icons/arrow-left.png);
    margin: 0 32px 0 0;
}


.cart-product-wrapper .left img {
    width: 75px;
    height: 75px;
    padding: 5px;
    border: 1px solid #E9E9E9;
    display: inline-block;
    border-radius: 5px;
    margin-right: 5px;
}

.cart-product-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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


.cart-product-wrapper .left {
    display: flex;
    align-items: center;
}

.cart-product-wrapper .right {
    flex: 0 0 auto;
    white-space: nowrap;
}

.btn-delete {
    background-color: #ec5857;
    color: #fff;
}

.checkbox label a {
    text-decoration: underline;
    font-weight: 500;
}

.bank-list .bank+.bank {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9e9e9;
}

.bank-list .bank.row {
    align-items: center;
}

.bank-list .bank .bank-info ul {
    margin-bottom: -10px;
}



.view .cargo-track {
    display: flex;
    align-items: center;
}

.view .cargo-track .left {
    margin-right: 20px;
}

.view .cargo-track .left img {
    margin-top: 10px;
}



.florist-wrapper.panel {
    margin: 50px 0;
}

.florist-wrapper.panel .menu li a i {
    color: #472439;
    font-size: 20px;
    text-align: center;
}

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

.order-list .order .left img {
    height: 75px;
    width: auto;
    margin-right: 5px;
    border-radius: 5px;
}

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

.order-list .order .right .simple-btn {
    margin-left: 15px;
}

.order-list .order+.order {
    border-top: 1.5px dashed #472439;
    margin-top: 15px;
    padding-top: 15px;
}

.cart-list .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px dashed #472439;
    margin-bottom: 15px;
    padding-bottom: 15px;
}


.cart-list .cart-item img {
    height: 75px !important;
    width: auto !important;
}

.florist-wrapper.panel .box.right.order-detail .img {
    width: auto;
    padding: 10px;
}

.box.order-detail+.box.order-detail {
    margin-top: 30px;
}

.florist-wrapper.panel .box.right.order-detail dl dd {
    min-height: 30px;
}

.total-price i {
    color: #472439;
}

.discount-code .simple-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.simple-btn:hover {
    opacity: 0.9;
}

.product-list .product .product-inner .text .prices .price-wrap {
    display: inline-flex;
}

.product-detail .order-create .price .price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.delete-outline {
    width: 20px;
    height: 20px;
    background: transparent;
    color: #ec5857;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    border: 1px solid #ec5857;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    padding: 0;
    margin: 0;
    position: relative;
    top: -1px;
}

.contact-page-detail {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-page-detail .contact-info-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-page-detail .contact-adress a {
    color: black;
}

.contact-page-detail .contact-adress a i {
    margin-right: 10px;
}

.contact-page-detail .contact-adress .fal {
    margin-right: 10px;
}

.contact-page-detail input.form-control {
    width: 80%;
    font-size: 14px;
    min-height: 45px;
    font-weight: lighter;
    padding: 5px 20px;
    line-height: 19px;
    color: #424242;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    outline: none;
}

.contact-page-detail .mb-15 {
    margin-bottom: 15px;
}

.contact-page-detail .mb-50 {
    margin-bottom: 50px;
}

.contact-page-detail textarea.form-control {
    min-height: 155px;
    width: 80%;
    font-size: 14px;
    font-weight: lighter;
    padding: 5px 20px;
    line-height: 19px;
    color: #424242;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    outline: none;
}

.contact-page-detail .contact-form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-page-detail .contact-button {
    padding: 6px 38px;
    background-color: #472439;
    color: white;
    border-radius: 4px;
    line-height: 20px;
    border: none;
}

.contact-page-detail .contact-button i {
    margin-left: 9px;
}

.contact-page-detail .contact-info-p {
    margin-bottom: 20px;
}

.contact-page-detail .social-contact .social-icon i {
    width: 70px;
    height: 70px;
    font-size: 33px;
    text-align: center;
    padding: 10px;
    border: 1px solid grey;
    margin-right: 20px;
    border-radius: 50%;
    padding-top: 17px;
    color: black;

}

.contact-page-detail .social-contact .social-icon i:hover {
    opacity: 0.5;
}

.contact-page-detail .contact-button:focus {
    outline: none;
}

.contact-page-detail ul.social-icon {
    display: flex;
}


.not-found-page-detail {
    padding-top: 60px;
    padding-bottom: 60px;
}

.not-title {
    font-size: 50px;
    text-align: center;
    margin-bottom: 40px;
}

.not-description {
    text-align: center;
}

a.not-found-link {
    display: block;
    background-color: #472439;
    width: 300px;
    text-align: center;
    margin-top: 30PX;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 30px;
    height: 40px;
    border-radius: 5px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.not-found-link:hover {
    text-decoration: none;
}

#map iframe {
    width: 100% !important;
    height: 350px !important;
}

.pagination .page-item.active a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #fff;
    background-color: #472439;
    border: 1px solid #dee2e6;
}

.pagination .page-item a {
    color: #472439;
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    background-color: #fff;
    border: 1px solid #dee2e6;
}


div#iyzipay-checkout-form {
    padding: 30px 0 20px;
}

.bank-info .h5 {
    display: flex;
    justify-content: space-between;
}


.with-icon.int-phone {
    background-position: calc(100% - 16px) center !important;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

.view .product-list .product .product-inner.box {
    padding: 0;
}

.view .product-list .product .product-inner .img img {
    width: 100%;
    height: auto;
}

.product-detail .order-create .form .time-selector {
    margin: -10px 0 30px;
}

.video-overlay {
    display: block;
    position: relative;
}

.video-overlay::after {
    content: "\f04b";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
    padding-top: 3px;
    padding-left: 6px;
    background-color: rgb(246, 64, 113);
}

.small-video-overlay::after {
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    padding-top: 3px;
    padding-left: 4px;
}

.mt-30 {
    margin-top: 30px;
}

@media(min-width: 992px) {

    .main-slides .slide .content .title {
        word-spacing: 100vw;
    }

    .desktop-column-reverse {
        flex-direction: column-reverse;
    }

    .box-group.desktop-column-reverse .item::before {
        top: unset !important;
        bottom: -10px !important;
    }

    .box-group.desktop-column-reverse div.item+.item {
        border-bottom: 1px solid #ebebeb !important;
    }
}

@media(max-width: 992px) {
    .contact-page-detail {
        padding-top: 20px;
    }

    .contact-page-detail .contact-info-title {
        margin-bottom: 20px;
    }

    .contact-page-detail .social-contact .social-icon i {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding-top: 12px;
    }

    .contact-page-detail input.form-control {
        width: 100%;
    }

    .contact-page-detail textarea.form-control {
        width: 100%;
    }

    .siparis-takibi li a span {
        display: none;
    }


    .bank-list .bank .bank-logo {
        height: auto;
        padding: 10px;
    }

    .bank-list .h5 .simple-btn {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
    }

    .bank-info .h5 {
        flex-wrap: wrap;
    }

    .sticky-wrapper {
        position: unset;
    }

    .company-feature a {
        width: 100%;
        font-size: 12px;

    }

    .special-design-area p {
        font-size: 22px;
    }

    .special-design-area a,
    .special-design-area button {
        font-size: 18px;
        padding: 0 20px;
        border-width: 1.5px;
    }

    .easy-autocomplete.eac-square input {
        min-width: 0;
    }
}

.florist-wrapper {
    padding: 50px 0;
}

@media (max-width: 992px) {
    .head-list .head-area .list {
        display: flex;
        justify-content: center;
    }

    .product-detail .order-create .price {
        flex-direction: column;
    }

    .product-detail .order-create .price em {
        width: auto;
    }
}