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

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
}

/* ========================================
   GRID SYSTEM (Bootstrap Replacement)
   ======================================== */

.grid {
	display: grid;
	gap: 20px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* Product Grid - Responsive */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 768px) {
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex Row - For horizontal layouts */
.flex-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

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

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

/* Two Column Layout */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

@media (max-width: 768px) {
	.two-col { grid-template-columns: 1fr; }
}

/* Product Detail Layout */
.product-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

@media (max-width: 992px) {
	.product-layout { grid-template-columns: 1fr; }
}

/* Sidebar Layout */
.sidebar-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 30px;
}

.sidebar-layout.sidebar-left {
	grid-template-columns: 300px 1fr;
}

@media (max-width: 992px) {
	.sidebar-layout,
	.sidebar-layout.sidebar-left {
		grid-template-columns: 1fr;
	}
}

/* Contact Page Layouts */
.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 992px) {
	.contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.contact-info-grid { grid-template-columns: 1fr; }
}

.contact-bottom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

@media (max-width: 768px) {
	.contact-bottom-grid { grid-template-columns: 1fr; }
}

/* Campaign Section Layout */
.campaign-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
}

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

@media (max-width: 768px) {
	.campaign-grid { grid-template-columns: 1fr; }
}

/* Vase Grid */
.vase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 15px;
}

/* Comment Area (replacing row/col-lg-12) */
.comment-area {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 40px;
	border-radius: 10px;
}

/* Price Row (replacing row align-items-center) */
.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.price-row.total {
	font-weight: bold;
	border-bottom: none;
}

/* Total Price Inner (replacing row justify-content-center) */
.total-price-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* Process Steps (replacing row > col-12 > ul) */
.process-steps {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ========================================
   FORM SYSTEM (Bootstrap Replacement)
   ======================================== */

.form-field {
	margin-bottom: 1rem;
}

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

.form-input {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	box-sizing: border-box;
}

.form-input:focus {
	border-color: var(--renk1, #007bff);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-input::placeholder {
	color: #999;
}

textarea.form-input {
	min-height: 120px;
	resize: vertical;
}

select.form-input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	padding-right: 2.5rem;
}

/* Form Grid */
.form-grid {
	display: grid;
	gap: 1rem;
}

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

@media (max-width: 768px) {
	.form-grid-2 { grid-template-columns: 1fr; }
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-primary {
	background-color: var(--renk1, #007bff);
	color: #fff;
}

.btn-primary:hover {
	background-color: var(--renk2, #0056b3);
}

.btn-secondary {
	background-color: #6c757d;
	color: #fff;
}

.btn-secondary:hover {
	background-color: #545b62;
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--renk1, #007bff);
	color: var(--renk1, #007bff);
}

.btn-outline:hover {
	background-color: var(--renk1, #007bff);
	color: #fff;
}

.btn-block {
	display: block;
	width: 100%;
}

/* ========================================
   ORDER LAYOUT (Sepet, Sipariş Sayfaları)
   ======================================== */

.order-layout-main {
	padding: 30px 0;
	background-color: #f8f9fa;
	min-height: 60vh;
}

.order-layout-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}

.order-layout-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 30px;
	align-items: start;
}

.order-layout-content {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.order-layout-sidebar {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 20px;
}

@media (max-width: 992px) {
	.order-layout-grid {
		grid-template-columns: 1fr;
	}

	.order-layout-sidebar {
		position: static;
	}
}

/* Cart Products List */
.cart-products-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cart-product-divider {
	text-align: center;
	padding: 15px 0;
	border-top: 1px dashed #ddd;
	color: #666;
	font-size: 14px;
}

.cf-empty-cart {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
}

/* Order Process Steps */
.order-process {
	max-width: 1320px;
	margin: 0 auto 30px;
	padding: 0 15px;
}

.order-process ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.order-process li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	background: #fff;
	border-radius: 8px;
	color: #999;
	font-size: 14px;
	transition: all 0.3s;
}

.order-process li.active {
	background: var(--renk1, #007bff);
	color: #fff;
}

.order-process li.done {
	background: #28a745;
	color: #fff;
}

.order-process li i {
	font-size: 18px;
}

@media (max-width: 768px) {
	.order-process ul {
		flex-wrap: wrap;
	}

	.order-process li {
		flex: 1;
		min-width: 100px;
		justify-content: center;
		padding: 12px 15px;
		font-size: 12px;
	}

	.order-process li span {
		display: none;
	}
}

/* Order Sidebar */
.order-sidebar {
	width: 100%;
}

.sidebar-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--renk1, #007bff);
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.sidebar-header i {
	color: var(--renk1, #007bff);
}

.sidebar-card {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sidebar-product-section {
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.product-section-header {
	margin-bottom: 10px;
}

.section-badge {
	display: inline-block;
	background: var(--renk1, #007bff);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

.sidebar-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sidebar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 8px;
}

.sidebar-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 6px;
}

.sidebar-item-content {
	flex: 1;
	min-width: 0;
}

.sidebar-item-title {
	font-size: 13px;
	font-weight: 500;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sidebar-item-price {
	font-size: 14px;
	font-weight: 600;
	color: var(--renk1, #007bff);
}

.sidebar-item-remove {
	background: none;
	border: none;
	color: #dc3545;
	cursor: pointer;
	padding: 5px;
	font-size: 14px;
	transition: opacity 0.2s;
}

.sidebar-item-remove:hover {
	opacity: 0.7;
}

.delivery-details {
	margin-top: 15px;
	padding: 12px;
	background: #f0f7ff;
	border-radius: 8px;
}

.delivery-title {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.delivery-title i {
	color: var(--renk1, #007bff);
}

.delivery-text {
	font-size: 12px;
	color: #666;
	margin: 0 0 10px 0;
	line-height: 1.5;
}

.fee-row {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	padding: 4px 0;
}

.fee-value {
	font-weight: 600;
}

.fee-value.free {
	color: #28a745;
}

.product-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dashed #ddd;
}

.total-label {
	font-size: 14px;
	color: #666;
}

.total-value {
	font-size: 16px;
	font-weight: 700;
	color: var(--renk1, #007bff);
}

/* Coupon Section */
.coupon-section {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.coupon-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	transition: background 0.2s;
}

.coupon-toggle:hover {
	background: #f8f9fa;
}

.coupon-toggle i.rotate {
	transform: rotate(180deg);
}

.coupon-form {
	margin-top: 10px;
}

.coupon-input-wrapper {
	display: flex;
	gap: 10px;
}

.coupon-input {
	flex: 1;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
}

.coupon-btn {
	padding: 10px 20px;
	background: var(--renk1, #007bff);
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.2s;
}

.coupon-btn:hover {
	background: var(--renk2, #0056b3);
}

/* Price Summary */
.price-summary {
	padding-top: 15px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
	color: #666;
}

.summary-row i {
	margin-right: 8px;
	color: var(--renk1, #007bff);
}

.summary-row.discount {
	color: #28a745;
}

.discount-value {
	font-weight: 600;
}

.summary-row.total {
	margin-top: 10px;
	padding-top: 15px;
	border-top: 2px solid #333;
	font-size: 16px;
	font-weight: 700;
	color: #333;
}

.total-amount {
	font-size: 20px;
	color: var(--renk1, #007bff);
}

/* ========================================
   ORDER FORM (Sipariş Form Alanları)
   ======================================== */

.cf-order-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cf-white-box {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cf-product-header {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--renk1, #007bff);
}

.cf-product-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.cf-product-info {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* CF Form Grid System */
.cf-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

@media (max-width: 768px) {
	.cf-form-grid {
		grid-template-columns: 1fr;
	}
}

.cf-col-full {
	grid-column: 1 / -1;
}

.cf-col-half {
	grid-column: span 1;
}

.cf-col-lg-half {
	grid-column: span 1;
}

@media (max-width: 768px) {
	.cf-col-lg-half {
		grid-column: 1 / -1;
	}
}

/* CF Form Inputs */
.cf-input-wrapper {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cf-input-label {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.cf-input-field {
	position: relative;
}

.cf-input-field i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 14px;
}

.cf-input-field input,
.cf-input-field select,
.cf-input-field textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.cf-input-field.has-icon input,
.cf-input-field.has-icon select {
	padding-left: 40px;
}

.cf-input-field input:focus,
.cf-input-field select:focus,
.cf-input-field textarea:focus {
	outline: none;
	border-color: var(--renk1, #007bff);
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.cf-input-field textarea {
	min-height: 100px;
	resize: vertical;
}

/* CF Checkbox */
.cf-checkbox-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.cf-checkbox-wrapper input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--renk1, #007bff);
	cursor: pointer;
}

.cf-checkbox-wrapper label,
.cf-checkbox-wrapper span {
	font-size: 14px;
	color: #333;
	cursor: pointer;
}

.cf-checkbox-wrapper a {
	color: var(--renk1, #007bff);
}

/* CF Button */
.cf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--renk1, #007bff);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.cf-button:hover {
	background: var(--renk2, #0056b3);
	transform: translateY(-1px);
}

.cf-duplicate-btn-wrapper {
	display: flex;
	justify-content: flex-end;
}

/* Next Order Step Component */
.cf-next-step-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	margin-top: 20px;
}

.cf-next-step-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.cf-next-step-prev {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #fff;
	color: #666;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s;
}

.cf-next-step-prev:hover {
	background: #f8f9fa;
	color: #333;
}

.cf-next-step-next {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--renk1, #007bff);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	margin-left: auto;
}

.cf-next-step-next:hover {
	background: var(--renk2, #0056b3);
	transform: translateY(-1px);
}

@media (max-width: 576px) {
	.cf-next-step-buttons {
		flex-direction: column;
	}

	.cf-next-step-prev,
	.cf-next-step-next {
		width: 100%;
		justify-content: center;
	}

	.cf-next-step-next {
		margin-left: 0;
	}
}

/* CF Empty Cart */
.cf-empty-cart {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
	background: #f8f9fa;
	border-radius: 10px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }

.hidden { display: none; }

.picker {
	font-size: 16px;
	text-align: left;
	line-height: 1.2;
	color: #000;
	position: absolute;
	z-index: 10000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.picker__input {
	cursor: default
}

.picker__input.picker__input--active {
	border-color: #0089ec
}

.picker__holder {
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}

.picker__frame,
.picker__holder {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}

.picker__holder {
	position: fixed;
	transition: background .15s ease-out, -webkit-transform 0s .15s;
	-webkit-transition: background .15s ease-out, -webkit-transform 0s .15s;
	transition: background .15s ease-out, transform 0s .15s;
	transition: background .15s ease-out, transform 0s .15s, -webkit-transform 0s .15s
}

.picker__frame {
	position: absolute;
	margin: 0 auto;
	min-width: 256px;
	max-width: 666px;
	width: 100%;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-transition: all .15s ease-out;
	transition: all .15s ease-out
}

@media (min-height:33.875em) {
	.picker__frame {
		overflow: visible;
		top: auto;
		bottom: -100%;
		max-height: 80%
	}
}

@media (min-height:40.125em) {
	.picker__frame {
		margin-bottom: 7.5%
	}
}

.picker__wrap {
	display: table;
	width: 100%;
	height: 100%
}

@media (min-height:33.875em) {
	.picker__wrap {
		display: block
	}
}

.picker__box {
	background: #fff;
	display: table-cell;
	vertical-align: middle
}

@media (min-height:26.5em) {
	.picker__box {
		font-size: 1.25em
	}
}

@media (min-height:33.875em) {
	.picker__box {
		display: block;
		font-size: 1.33em;
		border: 1px solid #777;
		border-top-color: #898989;
		border-bottom-width: 0;
		border-radius: 5px 5px 0 0;
		-webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, .24);
		box-shadow: 0 12px 36px 16px rgba(0, 0, 0, .24)
	}
}

@media (min-height:40.125em) {
	.picker__box {
		font-size: 1.5em;
		border-bottom-width: 1px;
		border-radius: 5px
	}
}

.picker--opened .picker__holder {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	background: 0 0;
	zoom: 1;
	background: rgba(0, 0, 0, .32);
	-webkit-transition: background .15s ease-out;
	transition: background .15s ease-out
}

.picker--opened .picker__frame {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-moz-opacity: 1;
	opacity: 1
}

@media (min-height:33.875em) {
	.picker--opened .picker__frame {
		top: auto;
		bottom: 0
	}
}

.picker__box {
	padding: 0 1em
}

.picker__header {
	text-align: center;
	position: relative;
	margin-top: .75em
}

.picker__month,
.picker__year {
	font-weight: 500;
	display: inline-block;
	margin-left: .25em;
	margin-right: .25em
}

.picker__year {
	color: #999;
	font-size: .8em;
	font-style: italic
}

.picker__select--month,
.picker__select--year {
	border: 1px solid #b7b7b7;
	height: 2em;
	padding: .5em;
	margin-left: .25em;
	margin-right: .25em
}

@media (min-width:24.5em) {

	.picker__select--month,
	.picker__select--year {
		margin-top: -.5em
	}
}

.picker__select--month {
	width: 35%
}

.picker__select--year {
	width: 22.5%
}

.picker__select--month:focus,
.picker__select--year:focus {
	border-color: #0089ec
}

.picker__nav--next,
.picker__nav--prev {
	position: absolute;
	padding: .5em 1.25em;
	width: 1em;
	height: 1em;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	top: -.25em
}

@media (min-width:24.5em) {

	.picker__nav--next,
	.picker__nav--prev {
		top: -.33em
	}
}

.picker__nav--prev {
	left: -1em;
	padding-right: 1.25em
}

@media (min-width:24.5em) {
	.picker__nav--prev {
		padding-right: 1.5em
	}
}

.picker__nav--next {
	right: -1em;
	padding-left: 1.25em
}

@media (min-width:24.5em) {
	.picker__nav--next {
		padding-left: 1.5em
	}
}

.picker__nav--next:before,
.picker__nav--prev:before {
	content: " ";
	border-top: .5em solid transparent;
	border-bottom: .5em solid transparent;
	border-right: .75em solid #000;
	width: 0;
	height: 0;
	display: block;
	margin: 0 auto
}

.picker__nav--next:before {
	border-right: 0;
	border-left: .75em solid #000
}

.picker__nav--next:hover,
.picker__nav--prev:hover {
	cursor: pointer;
	color: #000;
	background: #b1dcfb
}

.picker__nav--disabled,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover,
.picker__nav--disabled:hover {
	cursor: default;
	background: 0 0;
	border-right-color: #f5f5f5;
	border-left-color: #f5f5f5
}

.picker__table {
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	font-size: inherit;
	width: 100%;
	margin-top: .75em;
	margin-bottom: .5em
}

@media (min-height:33.875em) {
	.picker__table {
		margin-bottom: .75em
	}
}

.picker__table td {
	margin: 0;
	padding: 0
}

.picker__weekday {
	width: 14.285714286%;
	font-size: .75em;
	padding-bottom: .25em;
	color: #999;
	font-weight: 500
}

@media (min-height:33.875em) {
	.picker__weekday {
		padding-bottom: .5em
	}
}

.picker__day {
	padding: .3125em 0;
	font-weight: 200;
	border: 1px solid transparent
}

.picker__day--today {
	position: relative
}

.picker__day--today:before {
	content: " ";
	position: absolute;
	top: 2px;
	right: 2px;
	width: 0;
	height: 0;
	border-top: .5em solid #0059bc;
	border-left: .5em solid transparent
}

.picker__day--disabled:before {
	border-top-color: #aaa
}

.picker__day--outfocus {
	color: #ddd
}

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
	cursor: pointer;
	color: #000;
	background: #b1dcfb
}

.picker__day--highlighted {
	border-color: #0089ec
}

.picker--focused .picker__day--highlighted,
.picker__day--highlighted:hover {
	cursor: pointer;
	color: #000;
	background: #b1dcfb
}

.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
	background: #0089ec;
	color: #fff
}

.picker--focused .picker__day--disabled,
.picker__day--disabled,
.picker__day--disabled:hover {
	background: #f5f5f5;
	border-color: #f5f5f5;
	color: #ddd;
	cursor: default
}

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
	background: #bbb
}

.picker__footer {
	text-align: center
}

.picker__button--clear,
.picker__button--close,
.picker__button--today {
	border: 1px solid #fff;
	background: #fff;
	font-size: .8em;
	padding: .66em 0;
	font-weight: 700;
	width: 33%;
	display: inline-block;
	vertical-align: bottom
}

.picker__button--clear:hover,
.picker__button--close:hover,
.picker__button--today:hover {
	cursor: pointer;
	color: #000;
	background: #b1dcfb;
	border-bottom-color: #b1dcfb
}

.picker__button--clear:focus,
.picker__button--close:focus,
.picker__button--today:focus {
	background: #b1dcfb;
	border-color: #0089ec;
	outline: 0
}

.picker__button--clear:before,
.picker__button--close:before,
.picker__button--today:before {
	position: relative;
	display: inline-block;
	height: 0
}

.picker__button--clear:before,
.picker__button--today:before {
	content: " ";
	margin-right: .45em
}

.picker__button--today:before {
	top: -.05em;
	width: 0;
	border-top: .66em solid #0059bc;
	border-left: .66em solid transparent
}

.picker__button--clear:before {
	top: -.25em;
	width: .66em;
	border-top: 3px solid #e20
}

.picker__button--close:before {
	content: "\D7";
	top: -.1em;
	vertical-align: top;
	font-size: 1.1em;
	margin-right: .35em;
	color: #777
}

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
	background: #f5f5f5;
	border-color: #f5f5f5;
	color: #ddd;
	cursor: default
}

.picker__button--today[disabled]:before {
	border-top-color: #aaa
}

.picker__list {
	list-style: none;
	padding: .75em 0 4.2em;
	margin: 0
}

.picker__list-item {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	margin-bottom: -1px;
	position: relative;
	background: #fff;
	padding: .75em 1.25em
}

@media (min-height:46.75em) {
	.picker__list-item {
		padding: .5em 1em
	}
}

.picker__list-item:hover {
	cursor: pointer;
	color: #000;
	background: #b1dcfb;
	border-color: #0089ec;
	z-index: 10
}

.picker__list-item--highlighted {
	border-color: #0089ec;
	z-index: 10
}

.picker--focused .picker__list-item--highlighted,
.picker__list-item--highlighted:hover {
	cursor: pointer;
	color: #000;
	background: #b1dcfb
}

.picker--focused .picker__list-item--selected,
.picker__list-item--selected,
.picker__list-item--selected:hover {
	background: #0089ec;
	color: #fff;
	z-index: 10
}

.picker--focused .picker__list-item--disabled,
.picker__list-item--disabled,
.picker__list-item--disabled:hover {
	background: #f5f5f5;
	border-color: #f5f5f5;
	color: #ddd;
	cursor: default;
	border-color: #ddd;
	z-index: auto
}

.picker--time .picker__button--clear {
	display: block;
	width: 80%;
	margin: 1em auto 0;
	padding: 1em 1.25em;
	background: 0 0;
	border: 0;
	font-weight: 500;
	font-size: .67em;
	text-align: center;
	text-transform: uppercase;
	color: #666
}

.picker--time .picker__button--clear:focus,
.picker--time .picker__button--clear:hover {
	color: #000;
	background: #b1dcfb;
	background: #e20;
	border-color: #e20;
	cursor: pointer;
	color: #fff;
	outline: 0
}

.picker--time .picker__button--clear:before {
	top: -.25em;
	color: #666;
	font-size: 1.25em;
	font-weight: 700
}

.picker--time .picker__button--clear:focus:before,
.picker--time .picker__button--clear:hover:before {
	color: #fff;
	border-color: #fff
}

.picker--time .picker__frame {
	min-width: 256px;
	max-width: 320px
}

.picker--time .picker__box {
	font-size: 1em;
	background: #f2f2f2;
	padding: 0
}

@media (min-height:40.125em) {
	.picker--time .picker__box {
		margin-bottom: 5em
	}
}

.easy-autocomplete {
	position: relative
}

.easy-autocomplete input {
	border-color: #ccc;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
	color: #555;
	float: none;
	padding: 6px 12px
}

.easy-autocomplete input:focus,
.easy-autocomplete input:hover {
	-webkit-box-shadow: none;
	box-shadow: none
}

.easy-autocomplete a {
	display: block
}

.easy-autocomplete.eac-blue-light input:focus,
.easy-autocomplete.eac-blue-light input:hover {
	border-color: #66afe9;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6)
}

.easy-autocomplete.eac-blue-light ul {
	border-color: #66afe9;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6)
}

.easy-autocomplete.eac-blue-light ul .eac-category,
.easy-autocomplete.eac-blue-light ul li {
	border-color: #66afe9
}

.easy-autocomplete.eac-blue-light ul .eac-category.selected,
.easy-autocomplete.eac-blue-light ul li.selected {
	background-color: #ecf5fc
}

.easy-autocomplete.eac-green-light input:focus,
.easy-autocomplete.eac-green-light input:hover {
	border-color: #41db00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6)
}

.easy-autocomplete.eac-green-light ul {
	border-color: #41db00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6)
}

.easy-autocomplete.eac-green-light ul .eac-category,
.easy-autocomplete.eac-green-light ul li {
	border-color: #41db00
}

.easy-autocomplete.eac-green-light ul .eac-category.selected,
.easy-autocomplete.eac-green-light ul li.selected {
	background-color: #9eff75
}

.easy-autocomplete.eac-red-light input:focus,
.easy-autocomplete.eac-red-light input:hover {
	border-color: #ff5b5b;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6)
}

.easy-autocomplete.eac-red-light ul {
	border-color: #ff5b5b;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6)
}

.easy-autocomplete.eac-red-light ul .eac-category,
.easy-autocomplete.eac-red-light ul li {
	border-color: #ff5b5b
}

.easy-autocomplete.eac-red-light ul .eac-category.selected,
.easy-autocomplete.eac-red-light ul li.selected {
	background-color: #ff8e8e
}

.easy-autocomplete.eac-yellow-light input:focus,
.easy-autocomplete.eac-yellow-light input:hover {
	border-color: #ffdb00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6)
}

.easy-autocomplete.eac-yellow-light ul {
	border-color: #ffdb00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6)
}

.easy-autocomplete.eac-yellow-light ul .eac-category,
.easy-autocomplete.eac-yellow-light ul li {
	border-color: #ffdb00
}

.easy-autocomplete.eac-yellow-light ul .eac-category.selected,
.easy-autocomplete.eac-yellow-light ul li.selected {
	background-color: #ffe233
}

.easy-autocomplete.eac-dark-light input:focus,
.easy-autocomplete.eac-dark-light input:hover {
	border-color: #333;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6)
}

.easy-autocomplete.eac-dark-light ul {
	border-color: #333;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6)
}

.easy-autocomplete.eac-dark-light ul .eac-category,
.easy-autocomplete.eac-dark-light ul li {
	border-color: #333
}

.easy-autocomplete.eac-dark-light ul .eac-category.selected,
.easy-autocomplete.eac-dark-light ul li.selected {
	background-color: #4d4d4d;
	color: #fff
}

.easy-autocomplete.eac-dark {
	color: #fff
}

.easy-autocomplete.eac-dark input {
	background-color: #404040;
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #f6f6f6
}

.easy-autocomplete.eac-dark input:focus,
.easy-autocomplete.eac-dark input:hover {
	border-color: #333;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-dark ul {
	border-color: #333
}

.easy-autocomplete.eac-dark ul .eac-category,
.easy-autocomplete.eac-dark ul li {
	background-color: #404040;
	border-color: #333
}

.easy-autocomplete.eac-dark ul .eac-category.selected,
.easy-autocomplete.eac-dark ul li.selected {
	background-color: #737373;
	color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass {
	color: #fff
}

.easy-autocomplete.eac-dark-glass input {
	background-color: rgba(0, 0, 0, .8);
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass input:focus,
.easy-autocomplete.eac-dark-glass input:hover {
	border-color: rgba(0, 0, 0, .8);
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-dark-glass ul {
	border-color: rgba(0, 0, 0, .8)
}

.easy-autocomplete.eac-dark-glass ul .eac-category,
.easy-autocomplete.eac-dark-glass ul li {
	background-color: rgba(0, 0, 0, .8);
	border-color: rgba(0, 0, 0, .8)
}

.easy-autocomplete.eac-dark-glass ul .eac-category.selected,
.easy-autocomplete.eac-dark-glass ul li.selected {
	background-color: rgba(64, 64, 64, .8);
	color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass ul .eac-category:last-child,
.easy-autocomplete.eac-dark-glass ul li:last-child {
	border-radius: 0 0 4px 4px
}

.easy-autocomplete.eac-blue {
	color: #fff
}

.easy-autocomplete.eac-blue input {
	background-color: #6d9ed1;
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input:-moz-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input::-moz-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input:-ms-input-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input:focus,
.easy-autocomplete.eac-blue input:hover {
	border-color: #5a91cb;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-blue ul {
	border-color: #5a91cb
}

.easy-autocomplete.eac-blue ul .eac-category,
.easy-autocomplete.eac-blue ul li {
	background-color: #6d9ed1;
	border-color: #5a91cb
}

.easy-autocomplete.eac-blue ul .eac-category.selected,
.easy-autocomplete.eac-blue ul li.selected {
	background-color: #94b8dd;
	color: #f6f6f6
}

.easy-autocomplete.eac-yellow {
	color: #333
}

.easy-autocomplete.eac-yellow input {
	background-color: #ffdb7e;
	border-color: #333;
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #333
}

.easy-autocomplete.eac-yellow input:focus,
.easy-autocomplete.eac-yellow input:hover {
	border-color: #333;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-yellow ul {
	border-color: #333
}

.easy-autocomplete.eac-yellow ul .eac-category,
.easy-autocomplete.eac-yellow ul li {
	background-color: #ffdb7e;
	border-color: #333
}

.easy-autocomplete.eac-yellow ul .eac-category.selected,
.easy-autocomplete.eac-yellow ul li.selected {
	background-color: #ffe9b1;
	color: #333
}

.easy-autocomplete.eac-purple {
	color: #333
}

.easy-autocomplete.eac-purple input {
	background-color: #d6d1e7;
	border-color: #b8afd5;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #333
}

.easy-autocomplete.eac-purple input:focus,
.easy-autocomplete.eac-purple input:hover {
	border-color: #333;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-purple ul {
	border-color: #333
}

.easy-autocomplete.eac-purple ul .eac-category,
.easy-autocomplete.eac-purple ul li {
	background-color: #d6d1e7;
	border-color: #333
}

.easy-autocomplete.eac-purple ul .eac-category.selected,
.easy-autocomplete.eac-purple ul li.selected {
	background-color: #ebe8f3;
	color: #333
}

.easy-autocomplete.eac-bootstrap input {
	border-color: #ccc;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	color: #555;
	padding: 6px 12px
}

.easy-autocomplete-container {
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2
}

.easy-autocomplete-container ul {
	background: none repeat scroll 0 0 #fff;
	border-top: 1px dotted #ccc;
	display: none;
	margin-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	position: relative;
	top: -1px
}

.easy-autocomplete-container ul .eac-category,
.easy-autocomplete-container ul li {
	background: inherit;
	border-color: #ccc;
	-o-border-image: none;
	border-image: none;
	border-style: solid;
	border-width: 0 1px;
	display: block;
	font-size: 14px;
	font-weight: 400;
	padding: 4px 12px
}

.easy-autocomplete-container ul li:last-child {
	border-radius: 0 0 2px 2px;
	border-width: 0 1px 1px
}

.easy-autocomplete-container ul li.selected {
	background: none repeat scroll 0 0 #ebebeb;
	cursor: pointer
}

.easy-autocomplete-container ul li.selected div {
	font-weight: 400
}

.easy-autocomplete-container ul li div {
	display: block;
	font-weight: 400;
	word-break: break-all
}

.easy-autocomplete-container ul li b {
	font-weight: 700
}

.easy-autocomplete-container ul .eac-category {
	color: #aaa;
	font-style: italic
}

.eac-description .eac-item span {
	color: #aaa;
	font-style: italic;
	font-size: .9em
}

.eac-icon-left .eac-item img {
	margin-right: 4px;
	max-height: 30px
}

.eac-icon-right .eac-item {
	margin-top: 8px;
	min-height: 24px;
	position: relative
}

.eac-icon-right .eac-item img {
	margin-left: 4px;
	max-height: 30px;
	position: absolute;
	right: -4px;
	top: -8px
}

.easy-autocomplete.eac-square {
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-square input {
	border: 1px solid #7f8c8d;
	border-radius: 0;
	color: #7f8c8d;
	font-family: inherit;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0;
	min-width: 350px;
	padding: 12px 43px 12px 15px
}

.easy-autocomplete.eac-square ul {
	border-color: #7f8c8d;
	border-top: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	top: 0
}

.easy-autocomplete.eac-square ul .eac-category,
.easy-autocomplete.eac-square ul li {
	border-color: #7f8c8d;
	font-family: inherit;
	font-size: 16px;
	font-weight: 300;
	padding: 6px 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-square ul .eac-category *,
.easy-autocomplete.eac-square ul li * {
	font-weight: 300
}

.easy-autocomplete.eac-square ul .eac-category.selected,
.easy-autocomplete.eac-square ul li.selected {
	background-color: #f1f1f1;
	font-weight: 300
}

.easy-autocomplete.eac-square ul .eac-category b,
.easy-autocomplete.eac-square ul li b {
	font-weight: 600
}

.easy-autocomplete.eac-round {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-round input {
	border: 2px solid #888;
	border-radius: 10px;
	color: #888;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	min-width: 300px;
	padding: 10px
}

.easy-autocomplete.eac-round input:focus,
.easy-autocomplete.eac-round input:hover {
	border-color: #3079ed
}

.easy-autocomplete.eac-round ul {
	background: 0 0;
	border-color: #888;
	border-width: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	min-width: 300px;
	top: 20px
}

.easy-autocomplete.eac-round ul .eac-category,
.easy-autocomplete.eac-round ul li {
	background: #fff;
	border-color: #3079ed;
	border-width: 0 2px;
	font-size: 14px;
	padding: 8px 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-round ul .eac-category.selected,
.easy-autocomplete.eac-round ul li.selected {
	background-color: #d4e3fb
}

.easy-autocomplete.eac-round ul .eac-category:first-child,
.easy-autocomplete.eac-round ul li:first-child {
	border-radius: 10px 10px 0 0;
	border-width: 2px 2px 0
}

.easy-autocomplete.eac-round ul .eac-category:last-child,
.easy-autocomplete.eac-round ul li:last-child {
	border-radius: 0 0 10px 10px;
	border-width: 0 2px 2px
}

.easy-autocomplete.eac-round ul .eac-category b,
.easy-autocomplete.eac-round ul li b {
	font-weight: 700
}

.easy-autocomplete.eac-funky {
	font-family: Inconsolata, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-funky input {
	background: #07ed89;
	border: 0;
	border-radius: 0;
	color: #ed076b;
	font-family: inherit;
	font-size: 18px;
	min-width: 240px;
	padding: 12px
}

.easy-autocomplete.eac-funky ul {
	background: 0 0;
	border: 0
}

.easy-autocomplete.eac-funky ul .eac-category,
.easy-autocomplete.eac-funky ul li {
	background: 0 0;
	border: 0;
	color: #ed076b;
	font-size: 18px;
	padding: 4px 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-funky ul .eac-category.selected,
.easy-autocomplete.eac-funky ul li.selected {
	color: #8907ed
}

.easy-autocomplete.eac-solid input {
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
	border-color: #ddd;
	color: #666;
	font-size: 13px;
	min-height: 0;
	padding: 6px 12px
}

.easy-autocomplete.eac-solid ul .eac-category,
.easy-autocomplete.eac-solid ul li {
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-solid ul .eac-category.selected,
.easy-autocomplete.eac-solid ul li.selected {
	background-color: #f2f2f2
}

.easy-autocomplete.eac-plate {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-plate input {
	font-size: 13px;
	padding: 6px 12px
}

.easy-autocomplete.eac-plate ul {
	background: #b5b5b5;
	border-radius: 6px;
	border-width: 0;
	top: 10px
}

.easy-autocomplete.eac-plate ul .eac-category,
.easy-autocomplete.eac-plate ul li {
	background: #b5b5b5;
	color: #fafafa;
	font-size: 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-plate ul .eac-category b,
.easy-autocomplete.eac-plate ul li b {
	color: #ffd464
}

.easy-autocomplete.eac-plate ul .eac-category.selected,
.easy-autocomplete.eac-plate ul li.selected {
	background: #656565
}

.easy-autocomplete.eac-plate ul .eac-category:first-child,
.easy-autocomplete.eac-plate ul li:first-child {
	border-radius: 6px 6px 0 0
}

.easy-autocomplete.eac-plate ul .eac-category:last-child,
.easy-autocomplete.eac-plate ul li:last-child {
	border-radius: 0 0 6px 6px
}

.easy-autocomplete.eac-plate-dark {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-plate-dark input {
	font-size: 13px;
	padding: 6px 12px
}

.easy-autocomplete.eac-plate-dark ul {
	background: #212121;
	border-radius: 6px;
	border-width: 0;
	top: 10px
}

.easy-autocomplete.eac-plate-dark ul .eac-category,
.easy-autocomplete.eac-plate-dark ul li {
	background: #212121;
	color: #fafafa;
	font-size: 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-plate-dark ul .eac-category b,
.easy-autocomplete.eac-plate-dark ul li b {
	color: #ffd464
}

.easy-autocomplete.eac-plate-dark ul .eac-category.selected,
.easy-autocomplete.eac-plate-dark ul li.selected {
	background: #656565
}

.easy-autocomplete.eac-plate-dark ul .eac-category:first-child,
.easy-autocomplete.eac-plate-dark ul li:first-child {
	border-radius: 6px 6px 0 0
}

.easy-autocomplete.eac-plate-dark ul .eac-category:last-child,
.easy-autocomplete.eac-plate-dark ul li:last-child {
	border-radius: 0 0 6px 6px
}


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


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
}

.modal {
	padding-right: 0 !important
}

.modal-dialog {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, .95);
	margin: 0 !important
}

.modal-dialog .modal-content {
	width: 100%;
	height: 100%;
	border-radius: 0;
	border: 0;
	background: 0 0;
	padding: 50px
}

.modal-dialog .modal-content .close {
	font-size: 40px;
	text-shadow: none;
	color: #fff;
	opacity: 1;
	position: absolute;
	right: 50px;
	outline: 0 !important
}

.modal-dialog .modal-content .modal-content-inner {
	height: 100%
}

.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: #f2ab6d;
	color: #fff;
	font-size: 14px;
	display: inline-block;
	padding: 0 40px;
	border-radius: 0
}

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

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


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


#eac-container-headerProductSearchBox .select2-result-product {
	display: flex;
	align-items: center;
}

#eac-container-headerProductSearchBox .select2-result-product-image {
	float: left;
	width: 60px;
	margin-right: 10px
}

#eac-container-headerProductSearchBox .select2-result-product-image img {
	width: 100%;
	height: auto;
	border-radius: 2px
}

#eac-container-headerProductSearchBox .select2-result-product-meta {
	margin-left: 10px;
}

#eac-container-headerProductSearchBox .select2-result-product-title {
	color: #212121;
	font-weight: bold;
	word-wrap: break-word;
	margin-bottom: 3px;
}

#eac-container-headerProductSearchBox .select2-result-product-code,
.select2-result-product-description {
	font-size: 13px;
	color: #888;
}

#eac-container-headerProductSearchBox .select2-results__option--highlighted .select2-result-product-title {
	color: #fff
}

#eac-container-headerProductSearchBox ul {
	display: block !important;
}

#eac-container-headerProductSearchBox.easy-autocomplete-container {
	width: 90%;
	left: 5%;
	z-index: 999;
}

#eac-container-headerProductSearchBox ul {
	border: none;
}

#eac-container-headerProductSearchBox ul li,
#eac-container-headerProductSearchBox ul .eac-category {
	border: none;
}


#eac-container-headerProductSearchBox ul li:hover a {
	text-decoration: none;
}

#headerProductSearchBox {
	min-width: auto;
}

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

/* Blog Detail Page Grid */
.blog-detail-page {
	padding: 30px 0;
}

.blog-detail-grid {
	display: block;
}

.blog-detail-grid.has-sidebar {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 30px;
}

.blog-content {
	min-width: 0;
}

.blog-sidebar {
	position: sticky;
	top: 20px;
	align-self: start;
}

.sidebar-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--renk1);
}

.sidebar-products {
	display: grid;
	gap: 15px;
}

.sidebar-product-item {
	width: 100%;
}

@media (max-width: 992px) {
	.blog-detail-grid.has-sidebar {
		grid-template-columns: 1fr;
	}

	.blog-sidebar {
		position: static;
	}

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

@media (max-width: 576px) {
	.sidebar-products {
		grid-template-columns: 1fr;
	}
}

.list-head {
	min-height: auto;
	padding: 10px 0;
	background-color: #fff;
	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: black;
}


.breadcrumbs .breadcrumb li::before {
	color: black;
}

.breadcrumbs .breadcrumb a {
	color: black;
}

.breadcrumbs .breadcrumb a:hover {
	color: black;
}


.breadcrumb-item+.breadcrumb-item::before {
	content: "\f054";
	font-family: "Font Awesome 5 Pro";
}

@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: 26px;
	line-height: 1.5;
	text-align: center;
	margin: 0;
}

@media (max-width: 991.98px) {
	.list-head .h2 {
		line-height: 2;
	}
}

li.dropdown > a i {
    transition: transform 0.3s ease;
}

@media (min-width: 993px) {
  .dropdown:hover > a i {
    transform: rotate(180deg);
  }
}

/* Mobilde hover tamamen devre dışı */
@media (max-width: 992px) {
  .dropdown:hover > a i {
    transform: none !important;
  }
}
@media (max-width:992px) {
	.drop-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    background: transparent !important;
    box-shadow: none !important;
}

/* Ok animasyonu */
.dropdown > a i {
    transition: transform 0.3s ease;
}

.dropdown.open > a i {
    transform: rotate(180deg);
}

.dropdown .drop-menu {
	position: static;
	visibility: visible;
}

.dropdown .drop-menu-inner {
	border-top: none;
	padding: 8px 0;
}
.dropdown .drop-menu-inner .menu-list li {
	border-bottom: none;
}

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

@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;
	color: #000;
}

@media (max-width: 991.98px) {
	.list-head .dropdown .btn {
		margin: 0;
		padding: 0;
	}
}

.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: #f2ab6d url("./img/bg-footer-motto.png");
}

@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: #f2ab6d;
	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: #f2ab6d;
}

/* ========================================
   TASARIM12 FOOTER STYLES
   ======================================== */

/* CTA Section */
.footer-cta {
	background: #fff;
	padding: 50px 0 0 0;
	margin: 0;
	position: relative;
	z-index: 10;
}

.footer-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: #fff;
	padding: 40px 50px;
	border-radius: 12px;
	box-shadow: 0 15px 50px rgba(0,0,0,0.2);
	position: relative;
	transform: translateY(50%);
	z-index: 20;
}

.footer-cta-content {
	flex: 1;
}

.footer-cta-title {
	font-size: 28px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 10px 0;
}

.footer-cta-desc {
	font-size: 15px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.footer-cta-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-cta-phone {
	background: #f2ab6d;
	color: #fff;
}

.btn-cta-phone:hover {
	background: #e8965a;
	color: #fff;
}

.btn-cta-whatsapp {
	background: #25d366;
	color: #fff;
}

.btn-cta-whatsapp:hover {
	background: #1da851;
	color: #fff;
}

@media (max-width: 992px) {
	.footer-cta {
		padding: 30px 0 0 0;
	}

	.footer-cta-inner {
		flex-direction: column;
		text-align: center;
		padding: 30px;
		transform: translateY(50%);
	}

	.footer-cta-title {
		font-size: 24px;
	}

	.footer-cta-buttons {
		flex-direction: column;
		width: 100%;
	}

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

	.footer-main {
		padding-top: 120px;
	}
}

/* Main Footer */
.footer-main {
	background: #2C3E50;
	padding: 100px 0 60px 0;
	border-top: none;
	position: relative;
	z-index: 1;
	margin-top: -1px;
}

/* Override old footer border */
footer.footer-main {
	border-top: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
}

.footer-col-logo .footer-logo img {
	max-width: 180px;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
}

.footer-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	margin: 0;
}

.footer-title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 20px 0;
}

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

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu li a {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s;
}

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

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

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

.footer-contact-list li a,
.footer-contact-list li .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-contact-list li a:hover {
	color: #fff;
}

.footer-contact-list li i {
	color: rgba(255,255,255,0.6);
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.footer-col-logo {
		grid-column: span 2;
		text-align: center;
	}

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

@media (max-width: 576px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-col-logo {
		grid-column: span 1;
	}

	.footer-main {
		padding: 190px 0 40px 0;
	}
}

/* Bottom Footer */
.footer-bottom {
	background: #1a2a3a;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #555;
	color: #fff;
	border-radius: 50%;
	font-size: 16px;
	transition: background 0.3s;
}

.footer-social a:hover {
	background: #f2ab6d;
	color: #fff;
}

.footer-copyright {
	color: #aaa;
	font-size: 14px;
}

.footer-signature img {
	max-height: 35px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.3s;
	filter: brightness(0) invert(1);
}

.footer-signature img:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.footer-bottom-inner {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-bottom {
		padding-bottom: 100px;
	}
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 100px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
	color: #fff;
}

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

/* Mobile Sticky Bar */
.footer-sticky-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
	z-index: 9999;
}

.footer-sticky-bar .sticky-area {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.footer-sticky-bar .sticky-box {
	flex: 1;
	text-align: center;
	padding: 15px 0;
	color: #666;
	font-size: 20px;
	transition: color 0.3s, background 0.3s;
}

.footer-sticky-bar .sticky-box:hover,
.footer-sticky-bar .sticky-box:active {
	color: #f2ab6d;
	background: #fef5ed;
}

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

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

.force-bs-modal.modal-open {
	overflow: hidden
}

.force-bs-modal .modal-body .form-group label {
	font-weight: bold;
	width: 100%;
	text-align: left;
}

.modal-open .force-bs-modal.modal {
	overflow-x: hidden;
	overflow-y: auto
}

.force-bs-modal.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}

.force-bs-modal.modal-dialog {
	position: relative;
	width: auto;
	margin: .5rem;
	pointer-events: none
}

.force-bs-modal.modal.fade .modal-dialog {
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out;
	-webkit-transform: translate(0, -50px);
	transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
	.force-bs-modal.modal.fade .modal-dialog {
		transition: none
	}
}

.force-bs-modal.modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none;
	width: auto;
	height: auto;
	min-width: inherit;
	min-height: inherit;
	background: inherit;
	margin: 1.75rem auto !important;
}

.force-bs-modal .modal-dialog-scrollable {
	display: -ms-flexbox;
	display: flex;
	max-height: calc(100% - 1rem)
}

.force-bs-modal .modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1rem);
	overflow: hidden
}

.force-bs-modal .modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.force-bs-modal .modal-dialog-scrollable .modal-body {
	overflow-y: auto
}

.force-bs-modal .modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1rem)
}

.force-bs-modal .modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	content: ""
}

.force-bs-modal .modal-dialog-centered.modal-dialog-scrollable {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%
}

.force-bs-modal .modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none
}

.force-bs-modal .modal-dialog-centered.modal-dialog-scrollable::before {
	content: none
}

.force-bs-modal .modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: .3rem;
	outline: 0;
	padding: initial;
	height: initial;
}

.force-bs-modal .modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000
}

.force-bs-modal .modal-backdrop.fade {
	opacity: 0
}

.force-bs-modal .modal-backdrop.show {
	opacity: .5
}

.force-bs-modal .modal-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: .3rem;
	border-top-right-radius: .3rem
}

.force-bs-modal .modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto
}

.force-bs-modal .modal-title {
	margin-bottom: 0;
	line-height: 1.5
}

.force-bs-modal .modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem
}

.force-bs-modal .modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 1rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: .3rem;
	border-bottom-left-radius: .3rem
}

.force-bs-modal .modal-footer>:not(:first-child) {
	margin-left: .25rem
}

.force-bs-modal .modal-footer>:not(:last-child) {
	margin-right: .25rem
}

.force-bs-modal .modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

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


.product-slider-area .swiper-slide-prev-btn,
.product-slider-area .swiper-slide-next-btn {
	position: absolute;
	top: 50%;
	z-index: 1;
	color: #fff;
	border: 2px solid #fff;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
}


.product-slider-area .swiper-slide-prev-btn {
	left: 25px;
}

.product-slider-area .swiper-slide-next-btn {
	right: 25px;
}


.product-slider-area .swiper-container.product-thumb-slider {
	margin-top: 15px;
}

.product-slider-area .swiper-button-disabled {
	opacity: 0.5;
}

@media (min-width: 576px) {
	.force-bs-modal .modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto
	}

	.force-bs-modal .modal-dialog-scrollable {
		max-height: calc(100% - 3.5rem)
	}

	.force-bs-modal .modal-dialog-scrollable .modal-content {
		max-height: calc(100vh - 3.5rem)
	}

	.force-bs-modal .modal-dialog-centered {
		min-height: calc(100% - 3.5rem)
	}

	.force-bs-modal .modal-dialog-centered::before {
		height: calc(100vh - 3.5rem)
	}

	.force-bs-modal .modal-sm {
		max-width: 300px
	}
}

@media (min-width: 992px) {

	.force-bs-modal.modal-lg,
	.modal-xl {
		max-width: 800px
	}
}

@media (min-width: 1200px) {
	.force-bs-modal.modal-xl {
		max-width: 1140px
	}
}


@media (max-width: 991.98px) {
	.list-head .dropdown .dropdown-menu {
		top: 100%;
	}
}

.order-button {
	background: #f2ab6d;
	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 5 Pro';
	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;
	gap: 10px;
}

.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: #f2ab6d;
	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 .location-search .search .easy-autocomplete-container ul {
	border: 1px solid #ebebeb;
}

.product-detail .order-create .location-search .search .easy-autocomplete-container ul li {
	font-size: 14px;
	color: #151515;
	border: 1px solid #ebebeb;
}

.product-detail .order-create .location-search .search .easy-autocomplete-container ul li.selected {
	background: #f2ab6d;
	color: #FFF !important;
	border-color: #f2ab6d;
}

.product-detail .order-create .location-search .search .default-locations {
	display: none;
}

.product-detail .order-create .location-search .search .default-locations ul {
	display: block !important;
}

.product-detail .order-create .location-search .search .default-locations ul li {
	font-size: 14px;
	border: 1px solid #ebebeb;
}

.product-detail .order-create .location-search .search .default-locations ul li a {
	color: #151515;
	text-decoration: none;
	display: block;
}

.product-detail .order-create .location-search .search .default-locations ul li:hover {
	background: #f2ab6d;
	border-color: #f2ab6d;
}

.product-detail .order-create .location-search .search .default-locations ul li:hover a {
	color: #FFF;
}

.product-detail .order-create .form .dates {
	overflow: hidden;
}

.product-detail .order-create .form .dates ul {
	overflow: hidden;
	margin-bottom: 20px;
}

.simple-btn {
	background: #f2ab6d;
	color: #fff;
	cursor: pointer;
	padding: 5px 15px;
	border-radius: 4px;
	border: none;
}

.product-detail .order-create .form .dates li {
	width: calc(25% - 15px);
	margin-right: 15px;
	float: left;
}

@media (max-width: 991.98px) {
	.product-detail .order-create .form .dates li {
		width: calc(25% - 12px);
	}
}

.product-detail .order-create .form .dates li:last-child {
	margin: 0;
}

.product-detail .order-create .form .dates li input {
	visibility: hidden;
}

.product-detail .order-create .form .dates li label {
	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-bottom: 0;
}

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

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

.product-detail .order-create .form .time-selector .picker--time {
	width: 200px;
	min-width: inherit;
}

.product-detail .order-create .form .time-selector .picker--time .picker__holder {
	background: none;
	border: 1px solid #ebebeb;
}

.product-detail .order-create .form .time-selector .picker--time .picker__holder .picker__list {
	padding: 0 0 10px;
}

.product-detail .order-create .form .time-selector .picker--time .picker__holder .picker__list .picker__list-item {
	font-size: 14px;
	color: #151515;
}

.product-detail .order-create .form .time-selector .picker--time.picker--focused .picker__list-item--highlighted,
.product-detail .order-create .form .time-selector .picker--time .picker__list-item--highlighted:hover {
	background: #f2ab6d;
	color: #FFF !important;
	border-color: #f2ab6d;
}

.product-detail .order-create .form .time-selector .picker--time .picker__list-item:hover {
	background: #f2ab6d;
	color: #FFF !important;
	border-color: #f2ab6d;
}

.product-detail .order-create .price {
	width: 100%;
	padding: 15px;
	overflow: hidden;
	background: #FFF;
	border-radius: 3px;
	-webkit-box-shadow: 0 5px 10px -8px;
	box-shadow: 0 5px 10px -8px;
	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: #f2ab6d;
	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;
	flex-direction: column;
}

.product-detail .order-create .form .time-selector select {
	border: 2px solid #f2ab6d;
	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;
}

.ss-main .ss-single-selected .ss-arrow span.arrow-up {
	display: none;
}

.ss-main .ss-single-selected {
	height: 50px;
}

.ss-main .ss-single-selected .placeholder {
	padding: 0 30px;
}

.product-detail .order-create .location-search .search .icon-search {
	left: 5px;
}

.ss-main .ss-single-selected .ss-arrow {
	display: none;
}

.product-detail .order-create .location-search .search .icon-location-arrow {
	right: 15px;
}

.ss-main .ss-single-selected .placeholder {
	color: #212529;
}

.ss-main .ss-single-selected .placeholder .ss-disabled {
	color: inherit;
}

.ss-main {
	color: inherit;
}

.ss-main .ss-content .ss-search input {
	color: inherit;
}

.ss-main .ss-content .ss-list .ss-option.ss-disabled {
	color: inherit;
}


.text-theme {
	color: #f2ab6d;
}


.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 5 Pro";
}

.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: #f2ab6d;
	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 #f2ab6d;
	display: inline-block;
	padding-bottom: 5px;
}

.sticky-wrapper {
	position: sticky;
	top: 20px;
}


.extra-product-box.selected .add-btn-wrapper>button {
	background-color: #f2ab6d;
	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 5 Pro";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f2ab6d;
	font-size: 20px;
}

.time-selector select {
	-webkit-appearance: none;
}

.js-showMoreExtraProducts {
	background-color: #222;
}



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

@media (max-width: 991.98px) {
	.process li.active i {
		width: 30px;
		height: 30px;
	}
}

.process li.active span {
	color: #3c5063;
}

.process li.done i {
	background: #f2ab6d;
}

.process li.done i::before {
	display: block;
}

.process li.done span {
	color: #f2ab6d;
}

.process li:nth-child(1) {
	text-align: left;
}

.process li:nth-child(1).done::before {
	width: calc(50% + 50px);
	height: 4px;
	background: #f2ab6d;
	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: #f2ab6d;
	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: #f2ab6d;
	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: #f2ab6d;
	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: #f2ab6d;
}

.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: #f2ab6d 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: #f2ab6d url("./img/tick.png") center center no-repeat;
	border-color: #f2ab6d;
}

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

.view .cargo-track {
	border-radius: 5px;
	border: solid 3px #f2ab6d;
	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: #f2ab6d;
	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: #f2ab6d;
	text-decoration: none;
}

.florist-wrapper.panel .box.right.order-detail p a:hover {
	color: #f2ab6d;
}

.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) {

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

.sidebar-product-wrapper-title {
	font-weight: bold;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 3px solid #f2ab6d;
	display: inline-block;
}

.only-wrapper {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border: none !important;
}

.breadcrumb-area {
	background-color: #fff;
	border-top: 1px solid #eee;
	margin-bottom: 30px;
}

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

.parsley-error,
.parsley-valid {
	border-width: 1.5px !important;
}

.parsley-error {
	border-color: #ec5857 !important;
}

.checkbox.parsley-error {
	border: 1.5px solid #ec5857 !important;
	padding: 8px 0 0 5px !important;
	display: block;
}

.parsley-valid {
	border-color: #229754 !important;
}

.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: #f2ab6d;
	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 #f2ab6d;
	margin-top: 15px;
	padding-top: 15px;
}

.cart-list .cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1.5px dashed #f2ab6d;
	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: #f2ab6d;
}

.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: #f2ab6d;
	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: #f2ab6d;
	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: #f2ab6d;
	border: 1px solid #dee2e6;
}

.pagination .page-item a {
	color: #f2ab6d;
	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 5 Pro";
	font-weight: 400;
	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;
}

/* ========================================
   THEME VARIABLES & CUSTOM STYLES
   ======================================== */

/* Desktop Search - Amavi Style */
.header-top .search-area {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
}

.desktop-search-form {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 550px;
	background: #fff;
	border: 2px solid #f2ab6d;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.desktop-search-form:focus-within {
	border-color: #e8965a;
	box-shadow: 0 0 0 3px rgba(242, 171, 109, 0.15);
}

.desktop-search-form input {
	flex: 1;
	border: none !important;
	outline: none !important;
	padding: 0px 20px !important;
	font-size: 15px;
	background: transparent !important;
	color: #333;
	box-shadow: none !important;
}

.desktop-search-form input::placeholder {
	color: #999;
	font-weight: 400;
}

.desktop-search-form .search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 35px;
	background: #f2ab6d;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
}

.desktop-search-form .search-btn:hover {
	background: #e8965a;
}

.desktop-search-form .search-btn i {
	color: #fff;
	font-size: 18px;
}

/* Search Results Page */
.search-results {
	padding: 40px 0 60px;
}

.search-results .search-info {
	margin-bottom: 30px;
}

.search-results .search-info h1 {
	font-size: 24px;
	font-weight: 500;
	color: #333;
	margin: 0;
}

:root {
	--color-1: #f2ab6d;
	--color-2: #3d2c1e;
	--color-3: #f2ab6d;
	--color-4: #e8965a;
	--color-5: #d4a574;
	--color-6: #fef5ed;
	--color-7: #fef5ed;
	--color-8: #e5e5e5;
	--color-9: #f5f5f5;
	--color-10: #333333;
}

/* Global Font - Poppins Only */
body,
html,
input,
textarea,
select,
button {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* ========================================
   TASARIM12 UNIQUE HEADER STYLES
   ======================================== */

/* Announcement Bar - Dark Gray */
.announcement-bar {
	background-color: #3a3a3a;
	padding: 10px 0;
}

.announcement-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.announcement-text {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

.announcement-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.announcement-phone {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}

.announcement-phone:hover {
	color: #f2ab6d;
}

.announcement-phone i {
	font-size: 14px;
}

.announcement-social {
	display: flex;
	gap: 12px;
}

.announcement-social a {
	color: #fff;
	font-size: 16px;
	transition: color 0.3s;
}

.announcement-social a:hover {
	color: #f2ab6d;
}

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

/* Main Header - White Background */
.header-desktop {
	background: #fff;
}

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

.header-main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

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

.header-search {
	flex: 1;
	max-width: 500px;
}

.header-search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.header-search-form input {
	width: 100%;
	padding: 12px 50px 12px 20px;
	border: 2px solid #eee;
	border-radius: 30px;
	font-size: 14px;
	background: #f9f9f9;
	transition: border-color 0.3s, background 0.3s;
}

.header-search-form input:focus {
	outline: none;
	border-color: #f2ab6d;
	background: #fff;
}

.header-search-form button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: #f2ab6d;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s;
}

.header-search-form button:hover {
	background: #e8965a;
}

.header-search-form button i {
	color: #fff;
	font-size: 16px;
}

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

.header-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	color: #333;
	font-size: 12px;
	font-weight: 500;
	transition: color 0.3s;
}

.header-action:hover {
	color: #f2ab6d;
}

.header-action i {
	font-size: 24px;
	color: #f2ab6d;
}

/* Navigation Bar - Orange */
.header-nav {
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	padding: 0;
}

.header-nav .header-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

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

.header-nav .header-menu > li > a,
.header-nav .header-menu > li > span {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 18px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	text-transform: uppercase;
	transition: background 0.3s;
}

.header-nav .header-menu > li > a:hover,
.header-nav .header-menu > li > span:hover,
.header-nav .header-menu > li.dropdown:hover > span {
	background: rgba(255,255,255,0.1);
}

.header-nav .header-menu > li > span i,
.header-nav .header-menu > li > a i {
	font-size: 10px;
	transition: transform 0.3s;
	color: #fff;
}

.header-nav .header-menu > li.dropdown:hover > span i {
	transform: rotate(180deg);
}

/* Mobile Header */
.header-mobile {
	display: none;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-mobile-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

.mobile-logo img {
	max-width: 150px;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.hamburger-menu {
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hamburger-menu .menu-text {
	font-size: 13px;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.5px;
}

.hamburger-menu .hamburger-lines {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.hamburger-menu .hamburger-lines span {
	display: block;
	width: 25px;
	height: 3px;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s;
}

/* Mobile Search */
.header-mobile-search {
	display: none;
	padding: 10px 0 15px;
	background: #fff;
}

.header-mobile-search form {
	display: flex;
	position: relative;
}

.header-mobile-search input {
	width: 100%;
	padding: 12px 50px 12px 15px;
	border: 2px solid #f2ab6d;
	border-radius: 25px;
	font-size: 14px;
}

.header-mobile-search input:focus {
	outline: none;
}

.header-mobile-search button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: #f2ab6d;
	border: none;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header-mobile-search button i {
	color: #fff;
	font-size: 14px;
}

/* Mobile Menu Modal */
.mobile-menu-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 320px;
	height: 100%;
	background: #fff;
	z-index: 99999;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.mobile-menu-modal.active {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #eee;
}

.mobile-menu-logo img {
	max-width: 120px;
	max-height: 50px;
	object-fit: contain;
}

.mobile-menu-close {
	background: none;
	border: none;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu-body {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
}

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

.mobile-menu-list li {
	border-bottom: 1px solid #eee;
}

.mobile-menu-list li a {
	display: block;
	padding: 15px 0;
	color: #333;
	font-size: 16px;
	font-weight: 500;
}

.mobile-menu-list li a:hover {
	color: #f2ab6d;
}

.mobile-menu-footer {
	padding: 20px;
	border-top: 1px solid #eee;
	background: #f9f9f9;
}

.mobile-menu-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px;
}

.mobile-menu-actions a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
	font-size: 14px;
}

.mobile-menu-actions a i {
	color: #f2ab6d;
	width: 20px;
}

.mobile-menu-social {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.mobile-menu-social a {
	color: #666;
	font-size: 20px;
}

.mobile-menu-social a:hover {
	color: #f2ab6d;
}

.mobile-menu-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #f2ab6d;
	font-size: 16px;
	font-weight: 600;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

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

	.header-nav {
		display: none;
	}

	.header-mobile {
		display: block;
	}

	.header-mobile-search {
		display: block;
	}
}

/* Navigation Menu - Amavi Style */
.header-bottom {
	background: var(--color-3);
	border-bottom: none;
	padding: 0;
}

.header-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

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

.header-menu>li>a,
.header-menu>li>span {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 9px 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	text-transform: uppercase;
}

.header-menu>li>a:hover,
.header-menu>li>span:hover,
.header-menu>li.dropdown:hover>span {
	color: #fff;
	background: transparent;
}

.header-menu>li>span i,
.header-menu>li>a i {
	font-size: 10px;
	transition: transform 0.3s;
	color: #fff;
}

.header-menu>li.dropdown:hover>span i {
	transform: rotate(180deg);
}

/* Dropdown Menu */
.drop-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	border-radius: 0 0 8px 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.header-menu>li.dropdown:hover .drop-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.drop-menu-inner {
	border-top: 2px solid #151515;
	padding: 12px 0;
}

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

.drop-menu .menu-list li a {
	display: block;
	padding: 8px 14px;
	color: #000;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s;
}


@media (max-width:992px) {
	.drop-menu .menu-list li a {
		padding: 0px;
	}
}

.drop-menu .menu-list li a:hover {
	background: #fef5ed;
	color: #f2ab6d;
	padding-left: 28px;
}

@media (max-width:992px) {

.drop-menu .menu-list li a:hover {
	background: transparent;
	color: inherit;
	padding-left: 0px;
}
}

/* ========================================
   PRODUCT PRICE SECTION - Redesigned
   ======================================== */

.product-detail .order-create .price {
	display: flex;
	flex-direction: row !important;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	margin: 20px 0 30px;
}

.product-detail .order-create .price .price-wrap {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.product-detail .order-create .price span.old,
.product-detail .order-create .price span.new {
	display: flex;
	align-items: baseline;
	gap: 4px;
	font-weight: 600;
}

.product-detail .order-create .price span.old {
	font-size: 20px;
	color: #999;
	text-decoration: line-through;
}

.product-detail .order-create .price span.new {
	font-size: 32px;
	color: #222;
}

.product-detail .order-create .price em {
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	font-style: normal;
	font-size: 14px;
	font-weight: 500;
	color: inherit;
	margin: 0;
	float: none;
	width: auto;
	height: auto;
}

.product-detail .order-create .price em i {
	display: inline;
	font-style: normal;
}

.product-detail .order-create .price em i:last-child {
	font-size: 11px;
	color: #888;
	margin-left: 5px;
}

.product-detail .order-create .price span.old em {
	font-size: 12px;
}

.product-detail .order-create .price span.old em i:last-child {
	font-size: 10px;
}

.product-detail .order-create .price .order-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f2ab6d;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.product-detail .order-create .price .order-button:hover {
	background: #e8965a;
	transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
	.product-detail .order-create .price {
		flex-direction: column !important;
		align-items: center;
		gap: 15px;
		padding: 15px;
	}

	.product-detail .order-create .price .price-wrap {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	.product-detail .order-create .price .order-button {
		width: 100%;
		padding: 18px 24px;
		font-size: 17px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.product-detail .order-create .price {
		padding: 12px;
		margin: 15px 0 20px;
		border-radius: 6px;
	}

	.product-detail .order-create .price .price-wrap {
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.product-detail .order-create .price span.new {
		font-size: 28px;
	}

	.product-detail .order-create .price span.old {
		font-size: 18px;
	}

	.product-detail .order-create .price .order-button {
		padding: 16px 20px;
		font-size: 16px;
	}
}

/* ========================================
   BLOG BOX - Redesigned
   ======================================== */

.blog-box {
	display: block;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 30px;
	padding: 0;
}

.blog-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-box .blog-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	margin-bottom: 0;
	box-shadow: none;
	transition: transform 0.4s ease;
}

.blog-box:hover .blog-img {
	transform: scale(1.05);
}

.blog-box .blog-content {
	padding: 20px;
	text-align: left;
	align-items: flex-start;
}

.blog-box .blog-title {
	font-size: 18px;
	font-weight: 600;
	color: #222;
	padding-bottom: 10px;
	line-height: 1.4;
}

.blog-box .blog-desc {
	font-size: 14px;
	color: #666;
	padding-bottom: 15px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-box .blog-btn {
	background: transparent;
	border: none;
	padding: 0;
	overflow: visible;
}

.blog-box .blog-btn button {
	background: #f2ab6d;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s ease;
	cursor: pointer;
}

.blog-box .blog-btn button:hover {
	background: #e8965a;
}

.blog-box .blog-btn:before {
	display: none;
}

/* Blog Box Mobile */
@media (max-width: 768px) {
	.blog-box .blog-img {
		height: 200px;
	}

	.blog-box .blog-content {
		padding: 15px;
	}

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

	.blog-box .blog-desc {
		font-size: 13px;
		-webkit-line-clamp: 2;
	}
}

/* Footer Contact Icons */
.footer-box li i {
	display: inline-block !important;
	margin-right: 8px;
	color: #f2ab6d;
}

/* =============================================
   Order Tracking Form - Modern Design
   ============================================= */
.order-tracking-section {
	padding: 24px 0 48px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.order-tracking-box {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
	position: relative;
	overflow: hidden;
}

.order-tracking-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #f2ab6d 0%, #e8965a 100%);
}

.tracking-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f1f5f9;
}

.tracking-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(242, 171, 109, 0.4);
}

.tracking-icon i {
	font-size: 28px;
	color: #fff !important;
}

.tracking-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 6px 0;
	letter-spacing: -0.02em;
}

.tracking-desc {
	color: #64748b;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.tracking-form .form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.tracking-form .form-field {
	margin: 0;
	position: relative;
}

.tracking-form .form-input {
	width: 100%;
	padding: 16px 18px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.2s ease;
	box-sizing: border-box;
	background: #f8fafc;
}

.tracking-form .form-input:hover {
	border-color: #cbd5e1;
}

.tracking-form .form-input:focus {
	outline: none;
	border-color: #f2ab6d;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(242, 171, 109, 0.2);
}

.tracking-form .form-input::placeholder {
	color: #94a3b8;
}

.tracking-form .captcha-group {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-column: 1 / -1;
}

.tracking-form .btn-submit {
	grid-column: 1 / -1;
	padding: 16px 32px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	color: #fff !important;
	border: none;
	border-radius: 12px;
	font-size: 1.0625rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(242, 171, 109, 0.4);
	letter-spacing: 0.01em;
}

.tracking-form .btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(242, 171, 109, 0.5);
}

.tracking-form .btn-submit:active {
	transform: translateY(0);
}

.tracking-form .btn-submit i {
	font-size: 1.125rem;
	color: #fff !important;
}

/* Order Tracking Mobile */
@media (max-width: 640px) {
	.order-tracking-section {
		padding: 16px 0 32px;
	}

	.order-tracking-box {
		margin: 0 16px;
		padding: 24px 20px;
		border-radius: 16px;
	}

	.tracking-header {
		flex-direction: column;
		text-align: center;
		gap: 16px;
		padding-bottom: 20px;
		margin-bottom: 24px;
	}

	.tracking-icon {
		width: 56px;
		height: 56px;
		border-radius: 14px;
	}

	.tracking-icon i {
		font-size: 24px;
	}

	.tracking-title {
		font-size: 1.25rem;
	}

	.tracking-desc {
		font-size: 0.875rem;
	}

	.tracking-form .form-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tracking-form .form-input {
		padding: 14px 16px;
	}

	.tracking-form .btn-submit {
		padding: 14px 24px;
		font-size: 1rem;
	}
}

/* =============================================
   Customer Account Pages
   ============================================= */
.customer-section {
	padding: 24px 0 48px;
	background: #f8fafc;
	min-height: 60vh;
}

.customer-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
	align-items: start;
}

/* Sidebar */
.customer-sidebar {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	position: sticky;
	top: 100px;
}

.sidebar-header {
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	padding: 24px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.user-avatar {
	width: 52px;
	height: 52px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.user-avatar i {
	font-size: 22px;
	color: #fff !important;
}

.user-info {
	min-width: 0;
}

.user-name {
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-email {
	font-size: 0.8125rem;
	color: rgba(255,255,255,0.85);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sidebar-menu {
	padding: 12px 0;
}

.sidebar-menu .menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	color: #4b5563;
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.sidebar-menu .menu-item:hover {
	background: #fef7f2;
	color: #e8965a;
}

.sidebar-menu .menu-item.active {
	background: #fef7f2;
	color: #e8965a;
	border-left-color: #f2ab6d;
}

.sidebar-menu .menu-item i {
	width: 20px;
	text-align: center;
	font-size: 1rem;
}

.sidebar-menu .menu-item.logout {
	color: #dc2626;
	border-top: 1px solid #f1f5f9;
	margin-top: 8px;
	padding-top: 16px;
}

.sidebar-menu .menu-item.logout:hover {
	background: #fef2f2;
	color: #b91c1c;
}

/* Content Area */
.customer-content {
	min-width: 0;
}

.content-box {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.content-header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f1f5f9;
}

.content-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.content-title i {
	color: #f2ab6d !important;
	font-size: 1.25rem;
}

/* Orders List */
.orders-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.order-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: #f8fafc;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.order-card:hover {
	background: #f1f5f9;
}

.order-image {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #e5e7eb;
}

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

.order-image .no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 1.5rem;
}

.order-info {
	flex: 1;
	min-width: 0;
}

.order-title {
	font-weight: 600;
	font-size: 1rem;
	color: #1f2937;
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.order-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 8px;
}

.order-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.8125rem;
	color: #6b7280;
}

.order-meta span i {
	font-size: 0.75rem;
	color: #9ca3af !important;
}

.status-badge {
	display: inline-block;
	padding: 4px 10px;
	background: #fef7f2;
	color: #e8965a;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 20px;
}

.order-action {
	flex-shrink: 0;
}

.btn-detail {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-detail:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(242, 171, 109, 0.4);
}

.btn-detail i {
	font-size: 0.75rem;
	color: #fff !important;
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 48px 24px;
}

.empty-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: #fef7f2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.empty-icon i {
	font-size: 32px;
	color: #f2ab6d !important;
}

.empty-text h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 8px 0;
}

.empty-text p {
	color: #6b7280;
	margin: 0 0 24px 0;
}

.btn-shop {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	color: #fff !important;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-shop:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(242, 171, 109, 0.4);
}

.btn-shop i {
	color: #fff !important;
}

/* Customer Form Styles */
.content-body {
	padding-top: 8px;
}

/* Info Box */
.password-info {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: #fef7f2;
	border: 1px solid #fde5d4;
	border-radius: 10px;
	margin-bottom: 24px;
}

.password-info i {
	color: #f2ab6d !important;
	font-size: 1.125rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.password-info p {
	margin: 0;
	color: #92400e;
	font-size: 0.875rem;
	line-height: 1.5;
}

.form-section {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f1f5f9;
}

.form-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.customer-content .section-title {
	font-size: 1rem;
	font-weight: 700;
	color: #374151;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.customer-content .section-title::before {
	content: '';
	width: 4px;
	height: 18px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	border-radius: 2px;
}

.customer-content .form-grid {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.customer-content .form-grid:last-child {
	margin-bottom: 0;
}

.customer-content .form-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.customer-content .form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.customer-content .form-field label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #4b5563;
}

.customer-content .form-input {
	padding: 12px 14px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	background: #f8fafc;
}

.customer-content .form-input:hover {
	border-color: #d1d5db;
}

.customer-content .form-input:focus {
	outline: none;
	border-color: #f2ab6d;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(242, 171, 109, 0.15);
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.5;
}

.checkbox-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: #f2ab6d;
	flex-shrink: 0;
}

.form-actions {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #f1f5f9;
}

.customer-content .btn-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	color: #fff !important;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(242, 171, 109, 0.35);
}

.customer-content .btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(242, 171, 109, 0.45);
}

.customer-content .btn-submit i {
	color: #fff !important;
}

/* Customer Mobile */
@media (max-width: 768px) {
	.customer-section {
		padding: 16px 0 32px;
	}

	.customer-wrapper {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.customer-sidebar {
		position: static;
	}

	.sidebar-header {
		padding: 20px 16px;
	}

	.user-avatar {
		width: 44px;
		height: 44px;
	}

	.user-avatar i {
		font-size: 18px;
	}

	.sidebar-menu .menu-item {
		padding: 12px 16px;
		font-size: 0.875rem;
	}

	.content-box {
		padding: 16px;
		border-radius: 12px;
	}

	.content-title {
		font-size: 1.125rem;
	}

	.order-card {
		flex-wrap: wrap;
		padding: 12px;
	}

	.order-image {
		width: 64px;
		height: 64px;
	}

	.order-info {
		flex: 1 1 calc(100% - 80px);
	}

	.order-action {
		width: 100%;
		margin-top: 8px;
	}

	.btn-detail {
		width: 100%;
		justify-content: center;
	}

	.customer-content .form-grid-2 {
		grid-template-columns: 1fr;
	}

	.customer-content .btn-submit {
		width: 100%;
		justify-content: center;
	}
}

/* =============================================
   Auth Pages (Login, Register, Password Reset)
   ============================================= */
.auth-section {
	padding: 32px 0 48px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	min-height: 60vh;
}

.auth-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

/* Welcome Side */
.auth-welcome {
	padding: 40px;
}

.welcome-title {
	font-size: 2rem;
	font-weight: 800;
	color: #1f2937;
	margin: 0 0 16px 0;
	letter-spacing: -0.02em;
}

.welcome-desc {
	font-size: 1rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 28px 0;
}

.welcome-features {
	list-style: none;
	padding: 0;
	margin: 0 0 32px 0;
}

.welcome-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	font-size: 0.9375rem;
	color: #374151;
}

.welcome-features li i {
	color: #f2ab6d !important;
	font-size: 1.125rem;
}

.welcome-register p {
	color: #6b7280;
	margin: 0 0 12px 0;
	font-size: 0.9375rem;
}

.btn-register {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #fff;
	color: #f2ab6d !important;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 2px solid #f2ab6d;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-register:hover {
	background: #fef7f2;
	transform: translateY(-1px);
}

.btn-register i {
	color: #f2ab6d !important;
}

.btn-login {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #fff;
	color: #f2ab6d !important;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 2px solid #f2ab6d;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-login:hover {
	background: #fef7f2;
	transform: translateY(-1px);
}

.btn-login i {
	color: #f2ab6d !important;
}

/* Form Side */
.auth-form-wrapper {
	display: flex;
	justify-content: center;
}

.auth-box {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
	position: relative;
	overflow: hidden;
}

.auth-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #f2ab6d 0%, #e8965a 100%);
}

/* Auth Box Centered (without wrapper) */
.auth-section > .container > .auth-box {
	max-width: 420px;
	margin: 0 auto;
}

.auth-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f1f5f9;
}

.auth-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 6px 16px rgba(242, 171, 109, 0.35);
}

.auth-icon i {
	font-size: 24px;
	color: #fff !important;
}

.auth-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 4px 0;
}

.auth-desc {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Account Type Selector */
.account-type {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 8px;
}

.type-option {
	cursor: pointer;
}

.type-option input {
	display: none;
}

.type-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: #f8fafc;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #6b7280;
	transition: all 0.2s ease;
}

.type-label i {
	font-size: 1rem;
	color: #9ca3af !important;
	transition: color 0.2s ease;
}

.type-option input:checked + .type-label {
	background: #fef7f2;
	border-color: #f2ab6d;
	color: #e8965a;
}

.type-option input:checked + .type-label i {
	color: #f2ab6d !important;
}

/* Auth Form Grid */
.auth-form .form-grid {
	display: grid;
	gap: 12px;
}

.auth-form .form-grid-2 {
	grid-template-columns: 1fr 1fr;
}

/* Company Fields */
.company-fields {
	padding-top: 8px;
	border-top: 1px dashed #e5e7eb;
	margin-top: 8px;
}

/* Agreements */
.agreements {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 8px;
}

.agreement-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.8125rem;
	color: #4b5563;
	line-height: 1.5;
}

.agreement-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: #f2ab6d;
	flex-shrink: 0;
}

.agreement-item a {
	color: #f2ab6d;
	text-decoration: underline;
}

.agreement-item a:hover {
	color: #e8965a;
}

.auth-form .form-field {
	margin: 0;
}

.auth-form .form-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	background: #f8fafc;
	box-sizing: border-box;
}

.auth-form .form-input:hover {
	border-color: #d1d5db;
}

.auth-form .form-input:focus {
	outline: none;
	border-color: #f2ab6d;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(242, 171, 109, 0.15);
}

.auth-form .btn-submit {
	width: 100%;
	padding: 14px 24px;
	background: linear-gradient(135deg, #f2ab6d 0%, #e8965a 100%);
	color: #fff !important;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(242, 171, 109, 0.35);
	margin-top: 8px;
}

.auth-form .btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(242, 171, 109, 0.45);
}

.auth-form .btn-submit i {
	color: #fff !important;
	font-size: 0.875rem;
}

.auth-links {
	text-align: center;
	margin-top: 8px;
}

.forgot-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b7280;
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.forgot-link:hover {
	color: #f2ab6d;
}

.forgot-link i {
	font-size: 0.75rem;
}

/* Auth Footer */
.auth-footer {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #f1f5f9;
	text-align: center;
}

.auth-footer p {
	margin: 0;
	color: #6b7280;
	font-size: 0.875rem;
}

.auth-footer a {
	color: #f2ab6d;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.auth-footer a:hover {
	color: #e8965a;
}

/* Social Login */
.social-login {
	margin-top: 24px;
}

.social-login .divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.social-login .divider::before,
.social-login .divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

.social-login .divider span {
	color: #9ca3af;
	font-size: 0.8125rem;
	font-weight: 500;
}

.btn-facebook {
	width: 100%;
	padding: 12px 20px;
	background: #1877f2;
	color: #fff !important;
	font-size: 0.9375rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-facebook:hover {
	background: #166fe5;
	transform: translateY(-1px);
}

.btn-facebook i {
	color: #fff !important;
	font-size: 1.125rem;
}

/* Auth Mobile */
@media (max-width: 768px) {
	.auth-section {
		padding: 20px 0 32px;
	}

	.auth-wrapper {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.auth-welcome {
		padding: 24px;
		text-align: center;
		order: 2;
	}

	.welcome-title {
		font-size: 1.5rem;
	}

	.welcome-features {
		display: inline-block;
		text-align: left;
	}

	.welcome-register {
		margin-top: 24px;
	}

	.auth-form-wrapper {
		order: 1;
	}

	.auth-box {
		margin: 0 16px;
		padding: 24px 20px;
		border-radius: 16px;
	}

	.auth-header {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.auth-icon {
		width: 48px;
		height: 48px;
	}

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

	.auth-title {
		font-size: 1.25rem;
	}

	.auth-form .form-grid-2 {
		grid-template-columns: 1fr;
	}

	.account-type {
		grid-template-columns: 1fr;
	}

	.type-label {
		padding: 10px 14px;
		font-size: 0.875rem;
	}
}


/* ========== MERGED FROM MAIN.CSS ========== */

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


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

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

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

/* Mobile sticky bar için body padding */
@media (max-width: 820px) {
    body {
        padding-bottom: 80px;
    }
}

section {
    padding: 50px 0;
}

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

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

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

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

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

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

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

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

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

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

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

.content-wrapper h3 {
    font-size: 21px;
    font-weight: 500;
}

/* Content Wrapper END*/

/* HEADER START */
/* HEADER-TOP START */
.header-top {
    padding-top: 20px;
    padding-bottom: 20px;
}

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

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

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

.desktop-search-input input {
    position: relative !important;
    width: 100% !important;
    padding: 10px 10px 10px 20px !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: var(--color-5) 0px 3px 4px 0px !important;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

    .desktop-search-input input {
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* HEADER-TOP END */

/* HEADER-BOTTOM START */
/* Not: Header menü stilleri style.css dosyasında tanımlıdır */
/* HEADER-BOTTOM END */

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

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

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

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

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

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

.header-mobile-center {
    background-color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.mobile-basket {
    color: #000;
    font-size: 24px;
}

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

.header-mobile-bottom .search-area {
    width: 100%;
}

.header-mobile-bottom .search-form {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.header-mobile-bottom .search-form input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #f2ab6d;
    border-radius: 25px;
    font-size: 14px;
    background-color: #fff;
}

.header-mobile-bottom .search-form input:focus {
    outline: none;
    border-color: #e8965a;
}

.header-mobile-bottom .search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #f2ab6d;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-mobile-bottom .search-form button img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

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

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

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

.hamburger-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
}

.hamburger-menu .menu-text {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger-menu .hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 16px;
}

.hamburger-menu .hamburger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
}

@media (max-width: 820px) {

    .header-desktop,
    .header-bottom {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .header-modal {
        display: none;
    }

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

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

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

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

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

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

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

/* HEADER-MOBILE END */

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

@media (max-width:992px) {
    .header-modal .container {
        padding-right: 0;
        padding-left: 0;
    }
}

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

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

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

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

.modal-search {
    position: absolute;
    left: 85%;
    top: 25px;
}

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

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

.modal-icons i {
    color: #333;
    font-size: 30px;
}

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

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

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

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

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

.modal-menu li {
    padding: 8px;
    border-bottom: 1px solid #1C1C1E;
}

.modal-menu li a {
    color: #1C1C1E;
    font-size: 15px;
}

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

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

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

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

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

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

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

.modal-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* HEADER-MODAL END */
/* HEADER END */

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

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

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

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

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

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

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

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

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

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

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

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

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

/* HOME-IMAGES END */

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

.steps-grid {
    display: flex;
    gap: 15px;
}

.steps-grid .icon-box {
    flex: 1;
    margin-inline: 0;
}

.icon-box {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px 10px;
    margin-inline: 20px;
    border: none;
    border-radius: 8px;
    background-color: #f2ab6d;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-wrap: wrap;
    }

    .steps-grid .icon-box {
        flex: 1 1 45%;
    }
}

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

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

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

.icon-box span,
.icon-box a {
    font-size: 16px;
    color: white;
    text-decoration: none;
}

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

.swiper-slide .icon-box:hover {
    background-color: #f2ab6d;
}

@media (max-width: 1200px) {

    .icon-box span,
    .icon-box a {
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .icon-box span,
    .icon-box a {
        font-size: 14px;
    }

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

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

    .icon-box span,
    .icon-box a {
        font-size: 12px;
    }

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

/* ICON-SLIDER END */

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

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

.img-box {
    width: 100%;
}

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .smallSwiper {
        display: none;
    }

    .compaign-box {
        display: flex;
    }

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

    .img-box {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* CAMPAIGN END */

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



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


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

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

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

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

.product-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* @keyframes shake animasyonu */
@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-10deg);
    }

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* PRODUCT-BOX END */

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

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

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

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

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

.comment-prev {
    left: 16%;
}

.comment-next {
    right: 16%;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 992px) {

    .leaf-01,
    .leaf-02,
    .leaf-03 {
        display: none;
    }

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

    .comment-prev {
        left: 45%;
    }

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

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

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

    .comment-prev {
        left: 40%;
    }

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

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

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

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

/* COMMENT END */

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

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

.section-title {
    position: relative;
    font-size: 35px;
    color: #1C1C1E;
    text-align: center;
    margin-bottom: 60px;
}

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

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

/* DISCOUNTED END */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* CTA-AREA END */


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


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

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

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

.category-dropdown {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .page-p {
        display: none;
    }

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

    .form-select {
        width: 90%;
        margin: 0;
    }
}

/* CATEGORY.PHP END */

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

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

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

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

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

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

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

/* PRODUCT START */
.product-title {
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 20px;
    color: black;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-item {
    display: flex;
}

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

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

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

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

@media (max-width: 1200px) {

    .feature-item {
        flex-direction: column;
        margin-bottom: 15px;
        gap: 5px;
    }

    .product-icon-list {
        padding: 10px;
    }

    .flower {
        max-width: 65px;
    }

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

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

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

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

    .flower {
        max-width: 32px;
    }

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

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

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

    select {
        font-size: 12px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rate input {
    display: none;
}

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

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

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

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

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

.star-color {
    color: #ffc700;
}

.comment-robo {
    width: 300px;
}

/* stars END*/

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

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

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

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

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

/* PRODUCT END */


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

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

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

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

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

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

/* TEMPLATE-BLOGS END */

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

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

/* ABOUT-US-SECTION END */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

iframe {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* CONTACT END */

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

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

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

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

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

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

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

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

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

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

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

    .error-text {
        font-size: 75px;
    }
}

/* 404 END */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

.header .container {
    position: relative;
}

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

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

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

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

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

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

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

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

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

/* WHATSAPP END*/

/* FOOTER-STICKY START*/
.footer-sticky-bar {
    display: none;
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 15px 5px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    background: #f2ab6d;
    z-index: 9999 !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 820px) {
    .footer-sticky-bar {
        display: block !important;
    }
}


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

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

.footer-sticky-bar .sticky-area .sticky-box .sticky-title {
    font-size: 12px;
    font-weight: 500;
    color: white;
}

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

.footer-sticky-bar .sticky-area .sticky-box a i {
    font-size: 22px;
    color: white;
}


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

.sticky-box i {
    color: var(--color-6);
}

/* FOOTER-STICKY END*/

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

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

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

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

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

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



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

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

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

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

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

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

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


.footer-search-icon {
    position: absolute;
    left: 87%;
    color: var(--color-3);
}

/* FOOTER STICKY SEARCH END */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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

.breadcrumb-area {
    padding: 0;
}

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



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

.head-area h1 {
    margin: 0;
}

.list-head {
    padding: 10px 0px;
    color: #000;
    background-color: #fff;
}


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



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

.products {
    margin-bottom: 90px;
}


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



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



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


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

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

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

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



.footer-box li i {
    display: none;
}

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


.signature-area {

    display: flex;
    justify-content: center;
}




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

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

@media (max-width: 992px) {
    .box.login-form {
        margin-bottom: 85px;
    }

    .home-images img {
        width: 100%;
        border-radius: 0 !important;
        padding: 10px;
    }

    .footer-search-modal #headerProductSearchBox {
        min-width: 314px;
    }

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

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

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

    form.search-form {
        display: flex;
        align-items: center;
        padding: 0px 10px;
    }

    .easy-autocomplete.eac-square input {
        border: none;
    }

    .header-mobile-bottom {

        padding: 10px 20px;
    }

    .easy-autocomplete input {
        box-shadow: none !important;
    }

}



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



.product-desc {
    padding: 20px;
}


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

.order-now-title {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0px;
    color: black;
}

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




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


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

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

    .head-area .count {
        display: none;
    }


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


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

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




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

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

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


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

section.standart.p80 {
    padding: 0;
}

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

.breadcrumbs .breadcrumb {
    padding: 0;
}

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

.breadss {
    padding: 20px 0px;
}



.product-slider-area.swiper-box {
    padding: 10px;
}


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

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


.submenu {
    display: block !important;
}



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

}

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


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

.contact-box-title {
    font-size: 22px;
    margin: 10px 0;
    font-weight: bold;
}

.contact-box i {
    font-size: 32px;
    color: #f2ab6d;
}

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

}

@media (min-width: 992px) {
    .contact-bottom-form-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


}

.submit-btns {
    background: #f2ab6d;
    padding: 15px 60px;
    border-radius: 7px;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid #f2ab6d;
}

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

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


    }

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

    .footer-bottom .row {

        gap: 10px;
    }

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

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

    border-radius: 5px;
}

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

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

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

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

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

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

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

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

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



@media (min-width: 992px) {
    section.swiper.headerMobileSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
        display: none !important;
    }
}

span.all-products {
    color: white !important;
    background: #f2ab6d;
}

span.all-products:hover {
    color: white !important;
    background-color: #f2ab6d !important;
}

/* ========================================
   MARS-CROPS CUSTOM GRID SYSTEM
   Bootstrap'tan bağımsız grid sistemi
======================================== */

/* Container */
.mc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Grid System */
.mc-grid {
    display: grid;
    gap: 20px;
}

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

.mc-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mc-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mc-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.mc-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Flex Row (Bootstrap row alternatifi) */
.mc-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mc-row>* {
    padding: 0 15px;
    box-sizing: border-box;
}

/* Column System */
.mc-col-1 {
    width: 8.333333%;
}

.mc-col-2 {
    width: 16.666667%;
}

.mc-col-3 {
    width: 25%;
}

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

.mc-col-5 {
    width: 41.666667%;
}

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

.mc-col-7 {
    width: 58.333333%;
}

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

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

.mc-col-10 {
    width: 83.333333%;
}

.mc-col-11 {
    width: 91.666667%;
}

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

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .mc-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mc-grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }

    .mc-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }

    .mc-col-lg-3 {
        width: 25%;
    }

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

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

@media (max-width: 992px) {
    .mc-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mc-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mc-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mc-col-md-4 {
        width: 33.333333%;
    }

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

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

@media (max-width: 768px) {
    .mc-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .mc-col-sm-6 {
        width: 50%;
    }

    .mc-col-sm-12 {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .mc-grid-2,
    .mc-grid-3,
    .mc-grid-4,
    .mc-grid-5,
    .mc-grid-6 {
        grid-template-columns: 1fr;
    }

    .mc-col-xs-6 {
        width: 50%;
    }

    .mc-col-xs-12 {
        width: 100%;
    }
}

/* ========================================
   VANILLA JS HERO SLIDER STYLES
======================================== */
.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.hero-slider-container:active {
    cursor: grabbing;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.hero-slider-track.no-transition {
    transition: none !important;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.hero-slide a {
    display: block;
    width: 100%;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hero-slider-prev {
    left: 15px;
}

.hero-slider-next {
    right: 15px;
}

.hero-slider-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Hero Slider Section - isMobile() ile kontrol edilir */
.hero-slider-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-slider-section .container-fluid {
    padding: 0;
    max-width: 100%;
}

.hero-slider-section .hero-slider-container {
    margin: 0;
}

/* Mobile slider - isMobile() true olduğunda */
.hero-slider-section.hero-slider-mobile .hero-slide img {
    border-radius: 0;
}

/* Legacy class support */
.home-slider-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Home image */
.home-img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ========================================
   PRODUCT DETAIL PAGE
======================================== */

.product-detail {
    margin-top: 20px;
}

/* Sağ kısım - ürün bilgileri alanı */
.product-detail-box {
    padding: 20px 0;
}

.product-detail-box .product-desc {
    padding-bottom: 20px;
}

.product-detail-box .product-title {
    margin-bottom: 15px;
}

/* Ürün açıklaması paragrafları */
.product-detail-box .box-product-desc p,
.product-detail-box .pro-desc p,
.content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.product-detail-box .box-product-desc p:last-child,
.product-detail-box .pro-desc p:last-child,
.content-wrapper p:last-child {
    margin-bottom: 0;
}

/* Ürün özellikleri listesi */
.product-features {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

.product-features .feature-item {
    padding: 8px 0;
}

/* Sipariş alanı */
.order-area {
    padding: 20px 0;
    margin-top: 15px;
}

/* Ürün ikon listesi */
.product-icon-list {
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

/* Ödeme bilgisi */
.payment-info {
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

/* Ürün detayları (care_content) */
.box-padding {
    padding: 25px;
}

.box-padding p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.box-padding p:last-child {
    margin-bottom: 0;
}

/* ========================================
   LOCATION SELECTOR
======================================== */
.location-search {
    position: relative;
    width: 100%;
}

.location-search .search {
    position: relative;
    display: flex;
    align-items: center;
}

.location-search .search>i {
    position: absolute;
    left: 15px;
    color: #888;
    pointer-events: none;
}

.location-input {
    width: 100%;
    padding: 12px 40px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: var(--color-4, #f2ab6d);
}

.location-input::placeholder {
    color: #999;
}

.location-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #888;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.location-clear:hover {
    color: #333;
}

.location-clear.hidden {
    display: none;
}

.location-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-results.hidden {
    display: none;
}

.location-search {
    margin-bottom: 20px;
}

.location-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item:hover {
    background: #f8f8f8;
}

.location-item.location-empty {
    color: #888;
    cursor: default;
    text-align: center;
}

.location-item.location-empty:hover {
    background: none;
}

.loading-dates {
    padding: 15px;
    text-align: center;
    color: #888;
}

.error-dates {
    padding: 15px;
    text-align: center;
    color: #dc3545;
}

/* ========================================
   DELIVERY DATES (Product Page)
======================================== */
.product-detail .order-create .form .dates ul,
#order-dates ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail .order-create .form .dates ul li,
#order-dates ul li {
    list-style: none;
    padding: 0;
    margin: 0 !important;
    float: none !important;
    flex-shrink: 0;
}

/* Has-special class için 5 kutu */
.product-detail .order-create .form .dates ul.has-special li,
#order-dates ul.has-special li {
    width: calc(20% - 8px);
}

/* Normal 4 kutu */
.product-detail .order-create .form .dates ul:not(.has-special) li,
#order-dates ul:not(.has-special) li {
    width: calc(25% - 8px);
}

@media (max-width: 991px) {

    .product-detail .order-create .form .dates ul li,
    .product-detail .order-create .form .dates ul.has-special li,
    #order-dates ul li,
    #order-dates ul.has-special li {
        width: calc(50% - 5px);
    }
}

@media (max-width: 480px) {

    .product-detail .order-create .form .dates ul li,
    .product-detail .order-create .form .dates ul.has-special li,
    #order-dates ul li,
    #order-dates ul.has-special li {
        width: 100%;
    }
}

/* Tarih kutuları label stilleri */
#order-dates ul 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;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#order-dates ul li label:hover {
    border-color: var(--color-4, #f2ab6d);
}

#order-dates ul li label.selected {
    color: #fff;
    background: var(--color-4, #f2ab6d);
    border-color: var(--color-4, #f2ab6d);
}

#order-dates ul li label strong {
    font-weight: 500;
    font-size: 16px;
    display: block;
}

#order-dates ul li label i {
    font-size: 26px;
}

#order-dates ul li input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#order-dates ul li input:disabled+label {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Takvim kutusu */
#order-dates ul li label.date-selector {
    padding-top: 15px;
}

#order-dates ul li label.date-selector.date-selected {
    padding: 14px 10px 0;
    line-height: 20px;
}

/* Datepicker gizle */
#order-dates .datepicker {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Özel gün stili */
#order-dates ul li.special-day label {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    border-color: #ee5a5a;
}

#order-dates ul li.special-day label i {
    color: #fff;
}

/* ========================================
   DELIVERY TIME SELECTOR
======================================== */
.deliveryTimes {
    margin-top: 20px;
}

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

.time-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.time-selector>i {
    position: absolute;
    left: 15px;
    color: #888;
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

.time-selector select,
.time-selector .form-control,
#deliveryTime {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid var(--color-4, #f2ab6d);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.time-selector select:hover,
.time-selector .form-control:hover,
#deliveryTime:hover {
    border-color: var(--color-3, #333);
}

.time-selector select:focus,
.time-selector .form-control:focus,
#deliveryTime:focus {
    outline: none;
    border-color: var(--color-4, #f2ab6d);
    box-shadow: 0 0 0 3px rgba(242, 171, 109, 0.2);
}

/* Special times */
.specialTimes {
    margin-top: 15px;
    padding: 15px;
    background: #fff9f5;
    border-radius: 10px;
    border: 1px solid #ffe0c7;
}

.specialTimes .time-selector select {
    border-color: #ffb380;
}

/* ========================================
   LOGIN PANEL (Slide-in from right)
======================================== */
.login-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -420px;
    width: 400px;
    max-width: 100vw;
    background: #fff;
    z-index: 10000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.login-panel.active {
    right: 0;
}

/* Overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Close button */
.login-panel .btn-close-panel {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #999;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 2;
}

.login-panel .btn-close-panel:hover {
    background: var(--color-4, #e8965a);
    color: #fff;
}

/* Top: content area */
.login-panel .top {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: auto;
}

/* Header */
.login-panel .panel-header {
    text-align: center;
    padding: 40px 0 25px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 25px;
}

.login-panel .panel-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-2, #3d2c1e);
    margin: 0 0 8px;
}

.login-panel .panel-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Buton grubu */
.login-panel .panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-panel .btn-panel {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.login-panel .btn-panel i {
    font-size: 18px;
}

/* Üye Girişi */
.login-panel .btn-panel.uye-girisi {
    background: var(--color-4, #e8965a);
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 150, 90, 0.3);
}

.login-panel .btn-panel.uye-girisi:hover {
    background: var(--color-1, #f2ab6d);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 150, 90, 0.4);
    color: #fff;
}

/* Facebook */
.login-panel .btn-panel.fb-login {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.login-panel .btn-panel.fb-login:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
    color: #fff;
}

/* Ayırıcı */
.login-panel .panel-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 2px 0;
}

.login-panel .panel-divider::before,
.login-panel .panel-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.login-panel .panel-divider span {
    font-size: 13px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Üye Olmadan Devam */
.login-panel .btn-panel.uye-olmadan-devam {
    background: #fff;
    color: var(--color-2, #3d2c1e);
    border: 2px solid #e5e5e5;
}

.login-panel .btn-panel.uye-olmadan-devam:hover {
    border-color: var(--color-4, #e8965a);
    color: var(--color-4, #e8965a);
    background: #fffaf5;
}

/* Promo bölümü */
.login-panel .bottom {
    padding: 20px 30px;
}

.login-panel .panel-promo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 100%);
    border-radius: 12px;
}

.login-panel .panel-promo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-4, #e8965a) 0%, var(--color-1, #f2ab6d) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-panel .panel-promo-icon i {
    font-size: 20px;
    color: #fff;
}

.login-panel .panel-promo-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-2, #3d2c1e);
    margin-bottom: 3px;
}

.login-panel .panel-promo-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 576px) {
    .login-panel {
        width: 100%;
        right: -100%;
    }

    .login-panel .top {
        padding: 20px;
    }

    .login-panel .panel-header {
        padding: 30px 0 20px;
    }

    .login-panel .panel-title {
        font-size: 20px;
    }

    .login-panel .btn-panel {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ========================================
   VANILLA JS CAROUSEL STYLES (Blogs, Comments)
======================================== */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    flex-shrink: 0;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--color-3, #333);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--color-4, #f2ab6d);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ========================================
   COMMENT SLIDER STYLES
======================================== */
.comment-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.comment-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.comment-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* ========================================
   PRODUCT GALLERY STYLES (Vanilla JS)
======================================== */
.product-gallery-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.product-gallery-main .gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-gallery-main .gallery-slide:first-child {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.product-gallery-main .gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

.product-gallery-main .gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-4, #f2ab6d);
}

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

/* ========================================
   BOOTSTRAP-LIKE GRID SYSTEM
   Bootstrap CDN yerine kullanılacak
======================================== */

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Columns - Default (xs) */
.col-1 {
    width: 8.333333%;
}

.col-2 {
    width: 16.666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333333%;
}

.col-5 {
    width: 41.666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333333%;
}

.col-8 {
    width: 66.666667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333333%;
}

.col-11 {
    width: 91.666667%;
}

.col-12 {
    width: 100%;
}

/* Small devices (576px and up) */
@media (min-width: 576px) {
    .col-sm-1 {
        width: 8.333333%;
    }

    .col-sm-2 {
        width: 16.666667%;
    }

    .col-sm-3 {
        width: 25%;
    }

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

    .col-sm-5 {
        width: 41.666667%;
    }

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

    .col-sm-7 {
        width: 58.333333%;
    }

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

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

    .col-sm-10 {
        width: 83.333333%;
    }

    .col-sm-11 {
        width: 91.666667%;
    }

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

/* Medium devices (768px and up) */
@media (min-width: 768px) {
    .col-md-1 {
        width: 8.333333%;
    }

    .col-md-2 {
        width: 16.666667%;
    }

    .col-md-3 {
        width: 25%;
    }

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

    .col-md-5 {
        width: 41.666667%;
    }

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

    .col-md-7 {
        width: 58.333333%;
    }

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

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

    .col-md-10 {
        width: 83.333333%;
    }

    .col-md-11 {
        width: 91.666667%;
    }

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

/* Large devices (992px and up) */
@media (min-width: 992px) {
    .col-lg-1 {
        width: 8.333333%;
    }

    .col-lg-2 {
        width: 16.666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

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

    .col-lg-5 {
        width: 41.666667%;
    }

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

    .col-lg-7 {
        width: 58.333333%;
    }

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

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

    .col-lg-10 {
        width: 83.333333%;
    }

    .col-lg-11 {
        width: 91.666667%;
    }

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

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .col-xl-1 {
        width: 8.333333%;
    }

    .col-xl-2 {
        width: 16.666667%;
    }

    .col-xl-3 {
        width: 25%;
    }

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

    .col-xl-5 {
        width: 41.666667%;
    }

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

    .col-xl-7 {
        width: 58.333333%;
    }

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

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

    .col-xl-10 {
        width: 83.333333%;
    }

    .col-xl-11 {
        width: 91.666667%;
    }

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

/* Utility classes */
.justify-content-center {
    justify-content: center;
}

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

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

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

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

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

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

/* Responsive display utilities */
@media (max-width: 767.98px) {
    .d-md-none {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

@media (max-width: 991.98px) {
    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease-in-out;
}

/* Breadcrumb (Bootstrap-like) */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item a {
    color: #929da8;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: #5a6268;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #929da8;
    font-weight: 700;
}

/* Breadcrumb wrapper */
.breadcrumb-wrapper {
    position: relative;
}

/* Mobile breadcrumb (desktop'ta gizle) */
@media (min-width: 821px) {
    .breadcrumb-wrapper .mobile-bread {
        display: none;
    }

    .breadcrumb-wrapper .js-bread-list {
        display: none;
    }
}

/* Breadcrumb area spacing */
.breadcrumb-area .breadcrumb {
    padding: 15px 0 0;
    font-size: 13px;
}

/* ========================================
   PAGE HEADER (Breadcrumb Area)
======================================== */
.page-header {
    padding: 10px 0 20px;
}

.page-header--centered {
    text-align: center;
}

.page-header--with-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--color-3, #333);
}

.page-sort {
    position: relative;
}

.page-sort .dropdown {
    position: relative;
}

.page-sort .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.page-sort .dropdown-toggle:hover {
    border-color: var(--color-4, #f2ab6d);
}

.page-sort .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.page-sort .dropdown-menu.show {
    display: block;
}

.page-sort .dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.page-sort .dropdown-item:hover {
    background: #f5f5f5;
}

@media (max-width: 576px) {
    .page-header--with-sort {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .page-sort {
        width: 100%;
    }

    .page-sort .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .page-sort .dropdown-menu {
        width: 100%;
    }
}

/* ========================================
   VIDEO MODAL
======================================== */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
}

.video-modal-close:hover {
    color: #ccc;
}

/* ========================================
   HEADER INLINE STYLE FIXES
======================================== */
.desktop-logo {
    justify-content: center;
}

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

.mobile-logo img {
    max-height: 100px;
}

.hamburger-menu {
    z-index: 10;
}

/* ========================================
   FOOTER INLINE STYLE FIXES
======================================== */
.footer-bottom .row {
    justify-content: space-between;
    align-items: center;
}

.signature-area {
    text-align: right;
}

/* ========================================
   STOCK ALERT MODAL
======================================== */
.stock-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.stock-modal-overlay.active {
    display: block;
}

.stock-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;
    z-index: 9999;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.stock-modal.active {
    display: block;
}

.stock-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.stock-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.stock-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.stock-modal-close:hover {
    color: #333;
}

.stock-modal-body {
    padding: 20px;
}

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

.stock-modal-body .form-field:last-child {
    margin-bottom: 0;
}

.stock-modal-body label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.stock-modal-body .form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.stock-modal-body .form-input:focus {
    border-color: var(--color-1, #4a90d9);
    outline: none;
}

.stock-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
}

.stock-modal-footer .btn-cancel {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.stock-modal-footer .btn-cancel:hover {
    background: #f5f5f5;
}

.stock-modal-footer .btn-submit {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    background: var(--color-1, #4a90d9);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.stock-modal-footer .btn-submit:hover {
    opacity: 0.9;
}

/* Gelince Haber Ver butonu */
.order-area .simple-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-1, #4a90d9);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.order-area .simple-btn:hover {
    opacity: 0.9;
}

.order-area .price .no-stock {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 10px;
}