
:root{ --gold:#C59B2D; --gold-2:#E9C874; --ink:#1E1C1A; --bg:#FFFEFB; --muted:#6f6a66; --radius:18px; --shadow:0 18px 48px rgba(30,28,26,.10) }
*{box-sizing:border-box} html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);font-family:'Quicksand', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; font-weight:500; letter-spacing:0.01em}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 18px}
a{text-decoration:none;color:inherit}
h1,h2,h3{font-family:'Playfair Display', ui-serif, Georgia, serif; font-weight:700; letter-spacing:0.02em}

/* Header */
.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(197,155,45,.15);
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    position: relative;
}

.brand{
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand img{
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand b{
    font-size: 1.05rem;
    color: var(--ink);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
}
@media (max-width:900px) {
    .nav {
        padding-right: 60px;
    }
    .menu-toggle {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.menu{
    display:flex;
    gap:.3rem;  /* Reducido de 0.6rem a 0.3rem */
    list-style:none;
    margin:0;
    padding:0;
    align-items: center;
}
.menu a{
    padding: .7rem 1.2rem;
    border-radius:999px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

@media (min-width: 901px) {
    /* Estos estilos solo se aplican en desktop */
    .menu a {
        padding: .6rem 0.8rem;
    }
}
.menu a:hover{
    background:linear-gradient(90deg, rgba(197,155,45,.16), rgba(233,200,116,.16))
}
@media (max-width:900px) {
    .menu a {
        display: flex;
        align-items: center;
        justify-content: center; /* Centra el contenido */
        text-align: center;
        width: 100%;
        min-width: 260px; /* Ancho mínimo para todos los botones */
        margin: 0.5rem 0;
        background: linear-gradient(90deg,var(--gold),var(--gold-2));
        color: #FFFFFF;
        padding: 1rem 1.5rem; /* Padding horizontal aumentado */
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .menu a i {
        color: #FFFFFF; /* Color blanco para los iconos */
        margin-right: 0.8rem; /* Espacio entre el icono y el texto */
    }
    
    .menu a:hover {
        transform: translateX(5px);
        background: linear-gradient(90deg,var(--gold),var(--gold-2));
    }
    
    .menu {
        align-items: stretch; /* Asegura que todos los items tengan la misma altura */
        width: 100%;
        max-width: 300px; /* Ancho máximo del menú */
        margin: 0 auto;
    }
}
.menu-toggle{
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(197,155,45,.2);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--gold);
    background: rgba(197,155,45,.05);
}

.menu-toggle span{
    width: 20px;
    height: 2px;
    background: var(--gold);
    position: relative;
    display: block;
}

.menu-toggle span:before,
.menu-toggle span:after{
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--gold);
    transition: .25s ease;
}

.menu-toggle span:before{top: -6px}
.menu-toggle span:after{top: 6px}

.menu-open .menu-toggle {
    border-color: var(--gold);
    background: rgba(197,155,45,.08);
}

.menu-open .menu-toggle span{
    background: transparent;
}

.menu-open .menu-toggle span:before{
    transform: rotate(45deg);
    top: 0;
}

.menu-open .menu-toggle span:after{
    transform: rotate(-45deg);
    top: 0;
}
@media (max-width:900px){
  .menu{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:85%;
    max-width:320px;
    background:#FFFFFF;
    display:flex;
    flex-direction:column;
    padding:5rem 1.5rem 2rem;
    transform:translateX(100%);
    transition:transform 0.3s ease;
    z-index:1001;
    box-shadow:-4px 0 25px rgba(0,0,0,0.1);
    backdrop-filter: none;
    background-color: #FFFFFF !important;
    -webkit-backdrop-filter: none;
  }
  
  .menu a {
    padding: 1rem 1.2rem;
    width: 100%;
    text-align: left;
  }

  .menu i {
    width: 24px;
    text-align: center;
    margin-right: 1rem;
  }
  body.menu-open .menu{
    transform:translateX(0);
  }
  .menu-toggle{
    display:flex;
    position:relative;
    z-index:1002;
  }
  body.menu-open::before {
    content:'';
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    z-index:1000;
    opacity:1;
    transition:opacity 0.3s ease;
  }
}

/* Hero */
.hero .wrap{height:72vh;min-height:460px;border-radius:0 0 var(--radius) var(--radius);overflow:hidden;box-shadow:var(--shadow);position:relative}
.hero .swiper, .hero .swiper-slide, .hero picture, .hero img.bg{width:100%;height:100%}
.hero img.bg{object-fit:cover;filter:contrast(1.05) saturate(1.02)}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.38),rgba(0,0,0,.18));z-index:1}
.hero .content{position:absolute;inset:0;display:grid;place-items:center;z-index:2;color:#fff;text-align:center;padding:1rem}
.kicker{letter-spacing:.2em;text-transform:uppercase;font-size:.8rem;opacity:.9}
.display{font-size:clamp(2.2rem,5vw,4rem);line-height:1.06;margin:.35rem 0}

/* Sections */
.section{padding:3rem 0}
.title{text-align:center;margin:0 0 .7rem;font-size:clamp(1.6rem,3vw,2.2rem)}
.sub{text-align:center;opacity:.8;margin:0 0 1.2rem}

/* Grid & cards */
.grid{display:grid;gap:1rem}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:1000px){.grid.cols-4{grid-template-columns:repeat(3,1fr)}}
@media (max-width:820px){.grid.cols-4,.grid.cols-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){
    .grid.cols-4,.grid.cols-3{grid-template-columns:1fr}
    .grid{gap:1.2rem}
}
.card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column; position:relative; transition: transform .18s ease, box-shadow .18s ease }
.card:hover{ transform: translateY(-2px); box-shadow: 0 22px 52px rgba(0,0,0,.12) }
.card .body{padding:0.8rem 1rem 1rem; flex: 1; display: flex; flex-direction: column;}
.card h3{margin:.2rem 0 .4rem; font-size: 1.3rem;}
.card .price{color:var(--gold);font-weight:800}
.card .price-old{ text-decoration: line-through; opacity:.55 }
.card picture{aspect-ratio:3/2;max-height:180px;overflow:hidden;background:#f5f5f5;}
.card picture img{width:100%;height:100%;object-fit:cover;display:block;}
.card .card-media{aspect-ratio:3/2;max-height:180px;overflow:hidden;background:#f5f5f5;}
.card .card-media img{width:100%;height:100%;object-fit:cover;display:block;}
.card .service-description{font-size: 0.9rem; opacity: 0.8; line-height: 1.5; margin: 0 0 1rem 0; flex: 1;}
.card .service-actions{display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto;}
.card .service-actions .btn-agenda,
.card .service-actions .btn-prices{
    padding: 0 1rem !important; 
    font-size: 0.85rem !important; 
    text-align: center; 
    border-radius: 10px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.4rem; 
    text-decoration: none; 
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    border: 2px solid var(--gold) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    line-height: 1;
}
.card .service-actions .btn-agenda{background: linear-gradient(90deg,var(--gold),var(--gold-2)) !important; color: #fff !important;}
.card .service-actions .btn-agenda:hover{transform: translateY(-2px); box-shadow: 0 6px 16px rgba(197,155,45,.3);}
.card .service-actions .btn-prices{background: #fff !important; color: var(--gold) !important; position: relative; overflow: hidden; z-index: 1;}
.card .service-actions .btn-prices::before{content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg,var(--gold),var(--gold-2)); transition: left 0.3s ease; z-index: -1;}
.card .service-actions .btn-prices:hover{color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(197,155,45,.25);}
.card .service-actions .btn-prices:hover::before{left: 0;}

/* Responsive para tarjetas de servicios */
@media (max-width:760px){
    .card picture{max-height:200px} 
    .card .card-media{max-height:200px}
    .card .service-description{font-size: 0.85rem; margin: 0 0 0.8rem 0;}
    .card .service-actions{gap: 0.6rem;}
    .card .service-actions .btn-agenda,
    .card .service-actions .btn-prices{
        padding: 0 0.8rem !important; 
        font-size: 0.9rem !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
    }
}

@media (max-width:480px){
    .card picture{max-height:220px; aspect-ratio: 16/9;} 
    .card .card-media{max-height:220px; aspect-ratio: 16/9;}
    .card{padding: 1rem;}
    .card h3{font-size: 1.25rem;}
    .card .service-description{font-size: 0.9rem;}
    .card .service-actions{gap: 0.7rem; margin-top: 1rem;}
    .card .service-actions .btn-agenda,
    .card .service-actions .btn-prices{
        padding: 0 1rem !important; 
        font-size: 0.95rem !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        border-radius: 12px;
    }
}

/* === Promo card (homepage) === */
.promo-card .card-media{ aspect-ratio: 16/9; max-height: 420px; overflow: hidden; background:#f5f5f5 }
.promo-card .card-media img{ width:100%; height:100%; object-fit: cover; display:block }
@media (max-width: 900px){
    .promo-card .card-media{ max-height: 320px }
}
@media (max-width: 560px){
    .promo-card .card-media{ max-height: 240px }
    .promo-card .promo-actions .btn-agenda{ width: 100%; min-width: 0 }
}

/* Product cards - smaller version */
.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    max-height: 220px;
}

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

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

.product-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--ink);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
}

/* Badges */
.badge, .product-badges .badge{position:absolute; top:12px; left:12px; background:#111; color:#fff; padding:.25rem .5rem; border-radius:999px; font-size:.8rem; font-weight:700; z-index:2}
.badge.sale{ background:#E53935 }
.product-badges{position:absolute; top:1rem; left:1rem; display:flex; gap:0.5rem; z-index:2}

@media (max-width: 768px) {
    .product-image {
        max-height: 200px;
    }
}

/* Buttons */
.btn:not(.btn-agenda) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    background: linear-gradient(90deg,var(--gold),var(--gold-2));
    color: #FFFFFF !important;
    border: none;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    min-width: 160px;
    text-align: center;
}

.btn:not(.btn-agenda):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197,155,45,.25);
    color: #FFFFFF !important;
}

.btn.accent {
    background: linear-gradient(90deg,var(--gold),var(--gold-2));
    color: #FFFFFF !important;
}

/* Estilo especial para los botones outline */
.btn.outline:not(.btn-agenda) {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold) !important;
}

.btn.outline:not(.btn-agenda):hover {
    background: linear-gradient(90deg,var(--gold),var(--gold-2));
    color: #FFFFFF !important;
    border: 2px solid transparent;
}

/* Estilo para los botones de pago */
.btn.btn-primary,
.btn.pay-wompi,
[class*="pay-"] {
    background: linear-gradient(90deg,var(--gold),var(--gold-2));
    color: #FFFFFF !important;
    border: none;
}

/* Estilo para el botón de contraentrega */
.btn[href*="CONTRAENTREGA"] {
    background: linear-gradient(90deg,var(--gold),var(--gold-2));
    color: #FFFFFF !important;
    border: none !important;
}

/* Contact */
.form-grid{display:grid;gap:.6rem;grid-template-columns:1fr 1fr}
.form-grid input,.form-grid textarea{padding:.75rem .9rem;border-radius:12px;border:1px solid rgba(0,0,0,.15);font:inherit;background:#fff}
.form-grid textarea{min-height:160px}
@media (max-width:720px){.form-grid{grid-template-columns:1fr}}
.card:has(iframe.map){ overflow:hidden }
iframe.map{ display:block; position:relative; z-index:0 }

/* Footer */
.site-footer{background:linear-gradient(180deg,#fff,#faf7ee);border-top:1px solid rgba(197,155,45,.18);padding:1.4rem 0;margin-top:2rem}
.copy{opacity:.7;text-align:center}

/* WhatsApp floater (icon only) */
.whatsapp{position:fixed;right:16px;bottom:16px;width:60px;height:60px;border-radius:16px;display:flex;align-items:center;justify-content:center;
  background:#25D366;color:#fff;box-shadow:0 14px 28px rgba(37,211,102,.35);z-index:2000;animation:pulse 2.6s infinite}
.whatsapp::after{content:""}
.whatsapp svg{width:28px;height:28px}
@keyframes pulse{0%{transform:translateY(0)}50%{transform:translateY(-2px)}100%{transform:translateY(0)}}
@supports (padding: max(0px)) {
  .whatsapp{ bottom: max(16px, env(safe-area-inset-bottom)); right: max(16px, env(safe-area-inset-right)); }
}

/* Reveals */
.reveal{opacity:0;transform:translateY(18px) scale(.98)}
.reveal.in{opacity:1;transform:none;transition:opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1)}
.reveal-stagger> *{opacity:0;transform:translateY(14px)}
.reveal-stagger.in> *{opacity:1;transform:none;transition:opacity .5s ease, transform .5s ease}
.reveal-stagger.in> *:nth-child(2){transition-delay:.08s}
.reveal-stagger.in> *:nth-child(3){transition-delay:.16s}
.reveal-stagger.in> *:nth-child(4){transition-delay:.24s}
.reveal.fade-up{ opacity:0; transform: translateY(24px) }
.reveal.fade-up.in{ opacity:1; transform:none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1) }
.reveal.fade-in{ opacity:0 } .reveal.fade-in.in{ opacity:1; transition: opacity .6s ease }


/* === Auto-injected styles (hero, WhatsApp, agenda) === */

/* === Floating WhatsApp button (revamped) === */
.wa-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: linear-gradient(90deg,var(--gold),var(--gold-2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 20px rgba(197,155,45,.28);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    -webkit-tap-highlight-color: transparent;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 28px rgba(197,155,45,.38); filter: saturate(1.05); }
.wa-float:active { transform: scale(.98); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Optional pulse when page loads */
@keyframes wa-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.wa-float.pulse-once { animation: wa-pulse 1.2s ease 1 1.2s; }

/* === Hero slider === */
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .slides { position: relative; width: 100%; height: 100%; }
.hero-slider .slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
  background-size: cover; background-position: center;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45));
}
.hero-slider .caption {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 12%; width: min(90%, 1100px); text-align: center; color: #fff;
  font-weight: 700; letter-spacing: .5px;
}
.hero-slider .headline {
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 1.15; margin: 0 0 .5rem;
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.hero-slider .subline {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  opacity: .95; margin: 0 auto 1rem;
}

/* === Agenda button for services === */
.btn-agenda {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg,var(--gold),var(--gold-2));
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  bottom: 0;
}

.btn-agenda:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197,155,45,.25);
}

@media (max-width: 768px) {
  .btn-agenda {
    width: 100%;
    max-width: 200px;
    padding: .8rem 2rem;
  }
  
  .card .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* Navigation and Cart Styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-icon:hover {
    border-color: var(--gold);
    background: rgba(197,155,45,.05);
}

.cart-icon .count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid #fff;
}

@media (max-width:900px) {
    .nav-right {
        position: fixed;
        top: 15px;
        right: 65px;
    }
    
    .menu-toggle {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
    }

    .cart-icon {
        margin: 0;
    }

    .site-header {
        position: relative;
    }
}

/* === Auto refinements v2 === */

/* === Enhancements: align Agenda buttons and card consistency === */
section.servicios .grid .card,
.grid.cols-3 .card { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}
.grid.cols-3 .card .body { 
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5rem; /* Reducido el padding inferior */
}
.grid.cols-3 .card .btn-agenda { 
    margin: 0.5rem auto 1rem; /* Ajustado el margen */
    width: auto;
    min-width: 120px;
}

section.servicios .grid picture img,
.grid.cols-3 picture img { 
    width: 100%; 
    height: 240px; 
    object-fit: cover; 
    border-radius: 12px; 
}

/* === Improved floating WhatsApp button using image === */
.wa-float { 
  position: fixed; right: 18px; bottom: 18px; width: 60px; height: 60px;
  border-radius: 9999px; 
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px rgba(197,155,45,0.28), 0 2px 8px rgba(197,155,45,0.12) inset;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none; 
  z-index: 9999; 
  transition: transform .18s ease, box-shadow .18s ease, background .3s ease;
}
.wa-float:hover { 
  transform: translateY(-2px) scale(1.03); 
  box-shadow: 0 16px 30px rgba(197,155,45,0.32), 0 2px 9px rgba(197,155,45,0.14) inset;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.wa-float img { 
  width: 30px; height: 30px; 
  display: block; 
  filter: brightness(0) invert(1) drop-shadow(0 1px 1.5px rgba(0,0,0,.25));
}

/* Ensure hero height is solid */
section.hero, .hero-slider { min-height: min(72vh, 720px); }

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-icon:hover {
    background-color: rgba(197, 155, 45, 0.1);
}

.cart-icon i {
    font-size: 1.3rem;
    color: var(--ink);
}

.cart-icon .count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cart-icon .count.has-items {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Product Notification Styles */
.product-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.product-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.product-notification.success {
    border-left: 4px solid #4caf50;
}

.product-notification.error {
    border-left: 4px solid #f44336;
}

.product-notification i {
    font-size: 1.5rem;
}

.product-notification.success i {
    color: #4caf50;
}

.product-notification.error i {
    color: #f44336;
}

.product-notification span {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .product-notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .product-notification.show {
        transform: translateY(0);
    }
}
