/*
Theme Name: Shopkeeper - The Child Theme
Theme URI: https://shopkeeper.getbowtied.com
Description: This is the Child Theme for Shopkeeper - a Hassle-free Worpress Theme with great design and extensive functionality.
Author: Get Bowtied
Author URI: https://getbowtied.com
Template: shopkeeper
Version: 2.0
*/


/****************************************************************/
/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/
/****************************************************************/
/* Base card style */
.woocommerce ul.products li.product {
  background: #111008;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
}

/* Rotating dark backgrounds per card position */
.woocommerce ul.products li.product:nth-child(4n+1) { background: #111008; }
.woocommerce ul.products li.product:nth-child(4n+2) { background: #0e1a12; }
.woocommerce ul.products li.product:nth-child(4n+3) { background: #1A1A2E; }
.woocommerce ul.products li.product:nth-child(4n+4) { background: #2D1F0E; }

/* Card text colors */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #F5F0E8;
}

.woocommerce ul.products li.product .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: #C8E43A;
}

/* Add to cart button */
.woocommerce ul.products li.product .add_to_cart_button {
  background: #E8511A;
  color: #F5F0E8;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  float: right;
}

/* Quantity input */
.woocommerce div.product form.cart .qty {
  border: 1.5px solid rgba(17,16,8,0.2);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  width: 80px;
  height: 48px;
  text-align: center;
}

/* Main add to cart */
.woocommerce div.product form.cart .single_add_to_cart_button {
  background: #111008;
  color: #F5F0E8;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 10px;
  padding: 14px 32px;
  height: 48px;
  border: none;
  transition: background 0.2s ease;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #E8511A;
}

.woocommerce span.onsale {
  background: #E8511A;
  color: #F5F0E8;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: auto;
  min-height: auto;
  padding: 4px 12px;
  line-height: 1.4;
  top: 12px;
  left: 12px;
}

/* Animated underline on nav hover */
.shopkeeper-nav ul li a {
  position: relative;
  padding-bottom: 4px;
  color: #F5F0E8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shopkeeper-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E8511A;
  transition: width 0.2s ease;
}

.shopkeeper-nav ul li a:hover::after,
.shopkeeper-nav ul li.current-menu-item a::after {
  width: 100%;
}



.mugglys-cursor {
  width: 20px;
  height: 20px;
  background: #E8511A;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.mugglys-cursor.hovering {
  width: 48px;
  height: 48px;
}

@keyframes mugFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}

.hero-mug-image img {
  animation: mugFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(232,81,26,0.35));
}

/*Stickers */

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.sticker-1 { animation: spinSlow 12s linear infinite; }
.sticker-2 { animation: spinSlow 15s linear infinite reverse; }



/****************************************************************/
/****************************************************************/
/****************************************************************/