.elementor-kit-12{--e-global-color-primary:#E96B45;--e-global-color-secondary:#010F34;--e-global-color-text:#E96B45;--e-global-color-accent:#FFFFFF;--e-global-color-bc4ea07:#02010100;--e-global-color-a53c824:#FF0000;--e-global-color-7a668cc:#C6C6C67D;--e-global-color-eb53e70:#F0EDFA;--e-global-color-95bf060:#706C6C;--e-global-typography-primary-font-family:"DM Sans";--e-global-typography-primary-font-size:55px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.1em;--e-global-typography-secondary-font-family:"DM Sans";--e-global-typography-secondary-font-size:45px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-text-transform:capitalize;--e-global-typography-secondary-line-height:1.1em;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.3em;--e-global-typography-accent-font-family:"DM Sans";--e-global-typography-accent-font-size:18px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:1.2em;--e-global-typography-2a45b6e-font-family:"DM Sans";--e-global-typography-2a45b6e-font-size:26px;--e-global-typography-2a45b6e-font-weight:600;--e-global-typography-2a45b6e-line-height:1.2em;--e-global-typography-ecb057e-font-family:"DM Sans";--e-global-typography-ecb057e-font-size:14px;--e-global-typography-ecb057e-font-weight:600;--e-global-typography-ecb057e-text-transform:uppercase;--e-global-typography-ecb057e-line-height:1.2em;}.elementor-kit-12 button,.elementor-kit-12 input[type="button"],.elementor-kit-12 input[type="submit"],.elementor-kit-12 .elementor-button{background-color:var( --e-global-color-primary );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );line-height:var( --e-global-typography-accent-line-height );color:var( --e-global-color-accent );border-style:solid;border-width:1px 1px 1px 1px;border-color:var( --e-global-color-primary );border-radius:50px 50px 50px 50px;padding:15px 30px 15px 30px;}.elementor-kit-12 button:hover,.elementor-kit-12 button:focus,.elementor-kit-12 input[type="button"]:hover,.elementor-kit-12 input[type="button"]:focus,.elementor-kit-12 input[type="submit"]:hover,.elementor-kit-12 input[type="submit"]:focus,.elementor-kit-12 .elementor-button:hover,.elementor-kit-12 .elementor-button:focus{background-color:var( --e-global-color-bc4ea07 );color:var( --e-global-color-primary );border-style:solid;border-width:1px 1px 1px 1px;border-color:var( --e-global-color-primary );}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.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-kit-12 button,.elementor-kit-12 input[type="button"],.elementor-kit-12 input[type="submit"],.elementor-kit-12 .elementor-button{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-12{--e-global-typography-primary-font-size:45px;--e-global-typography-secondary-font-size:35px;}.elementor-kit-12 button,.elementor-kit-12 input[type="button"],.elementor-kit-12 input[type="submit"],.elementor-kit-12 .elementor-button{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
  --card-radius: 20px;
  --img-radius: 18px;
  --primary-color: #111;
  --accent-color: #ff6a00;
  --bg-color: #ffffff;
  --shadow-soft: 0 25px 50px rgba(0,0,0,0.12);
  --swatch-size: 16px;
}

/* ================================
   CARD BASE
================================ */
.product-card {
  background: var(--bg-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-soft);
}

/* Glow Effect */
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,106,0,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

/* ================================
   IMAGE AREA
================================ */
.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--img-radius);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image {
  transform: scale(1.15);
}

/* ================================
   BADGE
================================ */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.35s ease;
}

.product-image-wrap:hover .product-badge {
  transform: translateY(0);
  opacity: 1;
}

/* ================================
   WISHLIST ICON
================================ */
.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.35s ease;
  z-index: 10;
}

.wishlist-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-color);
  transition: all 0.3s ease;
}

.wishlist-icon:hover {
  background: var(--accent-color);
}

.wishlist-icon:hover svg {
  stroke: #fff;
  transform: scale(1.2);
}

/* ================================
   COLOR SWATCHES
================================ */
.color-swatches {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.swatch {
  width: var(--swatch-size);
  height: var(--swatch-size);
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swatch:hover {
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(0,0,0,0.25);
}

/* ================================
   ADD TO CART BUTTON (IMAGE HOVER)
================================ */
.add-to-cart-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 20px);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 10;
}

.product-image-wrap:hover .add-to-cart-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.add-to-cart-btn:hover {
  letter-spacing: 0.5px;
}

/* ================================
   CONTENT AREA
================================ */
.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

/* PRICE */
.product-price {
  display: flex;
  gap: 10px;
  align-items: center;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.new-price {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .product-title { font-size: 16px; }
  .new-price { font-size: 16px; }
  .add-to-cart-btn {
    padding: 10px;
    opacity: 1;
    transform: translate(-50%, 0);
  }
  .product-badge, .wishlist-icon, .color-swatches { opacity: 1; transform: translateY(0); }
}/* End custom CSS */