.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-030195d:#F0E3CB;--e-global-color-80cb4a2:#1F1301;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1400px;}.e-con{--container-max-width:1400px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html {
  overflow-x: hidden;
}
body {
  position: relative;
  overflow-x: hidden;
}


/* ---------------------------------------------------------------
   Grano - tidy up WooCommerce's AJAX add-to-cart leftovers
   ---------------------------------------------------------------
   Paste into WPCode as a NEW snippet:
       Code Type: CSS Snippet
       Insert:    Auto Insert -> Site Wide Header
   (Or: Elementor -> Site Settings -> Custom CSS.)

   Standalone - does NOT need the old cg-cart-drawer PHP snippet,
   which should stay disabled.
   --------------------------------------------------------------- */


/* 1. The "Sepetim" link
   ---------------------------------------------------------------
   After an AJAX add, WooCommerce injects its own "view cart" link
   right after the button:
       <a href="/cart/" class="added_to_cart wc-forward">Sepetim</a>
   The mini cart already covers this, so hide it.

   NOTE: deliberately targeting .added_to_cart and NOT .wc-forward
   on its own -- the cart page's "Proceed to checkout" button also
   carries .wc-forward, and hiding that would break checkout. */
a.added_to_cart,
.added_to_cart.wc-forward {
	display: none !important;
}


/* 2. The tick inside the "Sepete Ekle" button
   ---------------------------------------------------------------
   WooCommerce adds an .added class to the button after a successful
   AJAX add, and its core stylesheet draws the checkmark as an
   ::after pseudo-element using the WooCommerce icon font:

       .woocommerce button.button.added::after { content: "\e017"; }

   The class is never removed, which is why the tick stays. Removing
   the pseudo-element removes the tick. */
.woocommerce button.button.added::after,
.woocommerce a.button.added::after,
.woocommerce .button.added::after,
button.single_add_to_cart_button.added::after,
.single_add_to_cart_button.added::after,
.add_to_cart_button.added::after,
form.cart button.added::after {
	content: none !important;
	display: none !important;
	margin: 0 !important;
}


/* 3. The old full-width "... sepetinize eklendi" notice bar
   ---------------------------------------------------------------
   Only appears on the non-AJAX path now, but harmless to keep off.
   Scoped to .woocommerce-message so real errors and warnings
   (wrong coupon, out of stock, login problems) still show. */
.woocommerce-notices-wrapper .woocommerce-message {
	display: none !important;
}/* End custom CSS */