/**
Theme Name: LayerStore
Author: Cloudburst
Author URI: https://www.cloudburst.pl/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: layerstore
Template: astra
*/

/* Add to cart notification */
.custom-add-to-cart-notification {
                position: fixed;
                bottom: 20px;
                left: 20px;
                z-index: 9999;
                background-color: white;
                color: #FF5709; /* Green text */
                padding: 15px 20px;
                border-radius: 5px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.2);
                display: none;
                font-weight: 600;
                max-width: 320px;
                transition: all 0.3s ease;
                border-left: 2px solid #FF5709;
            }
            
            .custom-add-to-cart-notification.show {
                display: block;
                animation: slideIn 0.3s ease forwards;
            }
            
            .custom-add-to-cart-notification .checkout-button {
                display: inline-block;
                background-color: #4CAF50;
                color: white;
                padding: 5px 10px;
                border-radius: 3px;
                margin-left: 10px;
                text-decoration: none;
                font-size: 14px;
                transition: background-color 0.2s ease;
            }
            
            .custom-add-to-cart-notification .checkout-button:hover {
                background-color: #3e8e41;
            }
            
            @keyframes slideIn {
                from {
                    transform: translateY(20px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

/* Top bar above the header */
.ast-above-header-bar .site-above-header-wrap {
	height: 48px !important;
}

/* Product loop templates */

.product-card-loop {
	cursor: pointer;
}

.product-card-loop img {
	transition: transform 200ms ease-in-out;
}

.product-card-loop h4 {
	transition: color 200ms ease-in-out;
}

.product-card-loop:hover img {
	transform: scale(1.05);
}

.product-card-loop:hover h4 {
	color: #FF5709 !important;
}

/* Slides timer widget */
.slide-timer-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  z-index: 100;
}

.slide-timer-svg {
  transform: rotate(-90deg);
}

.slide-timer-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  stroke-linecap: round;
  stroke-width: 3px;
  fill: transparent;
}

.slide-timer-background {
  stroke-width: 3px;
  fill: transparent;
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
	.slide-timer-container {
		width: 60px;
  		height: 60px;
	}
}

@media screen and (max-width: 1200px) {
	.slide-timer-container {
		width: 80px;
  		height: 80px;
	}
}