/* =========================
RESET BASICO
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,
body{
width:100%;
overflow-x:hidden;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:#111111;
background:#ffffff;
line-height:1.6;
}

body.admin-bar{
min-height:100vh;
}

/* =========================
ESTRUCTURA
========================= */

.container{
width:1200px;
max-width:90%;
margin:0 auto;
}

a{
color:inherit;
text-decoration:none;
}

ul{
list-style:none;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* =========================
TOPBAR
========================= */

.ikape-topbar{
background:#111111;
color:rgba(255,255,255,0.75);
font-size:12px;
}

.ikape-topbar-inner{
display:flex;
align-items:center;
justify-content:space-between;
height:36px;
gap:16px;
}

.ikape-topbar-left{
display:flex;
align-items:center;
gap:20px;
}

.ikape-topbar-left span{
display:flex;
align-items:center;
gap:6px;
letter-spacing:.02em;
}

.ikape-topbar-left svg{
opacity:.6;
}

.ikape-topbar-right{
display:flex;
align-items:center;
gap:12px;
}

.ikape-topbar-right a{
color:rgba(255,255,255,0.6);
display:flex;
align-items:center;
transition:color .2s;
}

.ikape-topbar-right a:hover{
color:#ffffff;
}

.ikape-topbar-divider{
width:1px;
height:14px;
background:rgba(255,255,255,0.2);
}

.ikape-topbar-email{
font-size:12px;
letter-spacing:.01em;
}

@media(max-width:768px){
.ikape-topbar-left{
display:none;
}
}

/* =========================
HEADER
========================= */

.ikape-site-header{
position:sticky;
top:0;
z-index:1000;
background:#ffffff;
border-bottom:1px solid #f0f0f0;
box-shadow:0 2px 16px rgba(0,0,0,0.06);
}

/* Topbar + header juntos sticky */
.ikape-topbar{
position:sticky;
top:0;
z-index:1001;
}

.ikape-site-header{
position:sticky;
top:36px;
z-index:1000;
}

.ikape-header-inner{
display:grid;
grid-template-columns:auto 1fr auto;
align-items:center;
gap:32px;
height:72px;
}

.ikape-logo img,
.custom-logo,
.custom-logo-link img{
height:48px !important;
width:auto !important;
max-width:none !important;
display:block;
}

.ikape-main-nav{
display:flex;
justify-content:center;
}

.ikape-menu{
display:flex;
align-items:center;
gap:4px;
list-style:none;
}

.ikape-menu li a{
font-size:14px;
font-weight:500;
color:#4b5563;
padding:8px 16px;
border-radius:999px;
transition:color .2s, background .2s;
display:block;
letter-spacing:.01em;
}

.ikape-menu li a:hover{
color:#111111;
background:#f4f4f4;
}

.ikape-menu li.current-menu-item a{
color:#111111;
background:#111111;
color:#ffffff;
}

.ikape-header-actions{
display:flex;
align-items:center;
gap:4px;
}

/* Botones de acción */
.ikape-search-toggle,
.ikape-user-toggle{
width:40px;
height:40px;
border-radius:12px;
border:none;
background:transparent;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
color:#4b5563;
transition:background .2s, color .2s;
}

.ikape-search-toggle:hover,
.ikape-user-toggle:hover{
background:#f7f7f7;
color:#111111;
}

.ikape-cart-toggle{
width:40px;
height:40px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
color:#4b5563;
transition:background .2s, color .2s;
position:relative;
text-decoration:none;
}

.ikape-cart-toggle:hover{
background:#f7f7f7;
color:#111111;
}

.ikape-cart-count{
position:absolute;
top:4px;
right:4px;
min-width:16px;
height:16px;
background:#111111;
color:#ffffff;
font-size:10px;
font-weight:700;
border-radius:999px;
display:flex;
align-items:center;
justify-content:center;
padding:0 4px;
opacity:0;
transition:opacity .2s;
}

.ikape-cart-count.has-items{
opacity:1;
}

/* Dropdowns */
.ikape-search-wrap,
.ikape-user-wrap,
.ikape-cart-wrap{
position:relative;
}

.ikape-search-dropdown,
.ikape-user-dropdown,
.ikape-cart-dropdown{
position:absolute;
top:calc(100% + 12px);
right:0;
background:#ffffff;
border:1px solid #ebebeb;
border-radius:20px;
box-shadow:0 12px 40px rgba(0,0,0,0.1);
opacity:0;
pointer-events:none;
transform:translateY(-8px);
transition:opacity .2s, transform .2s;
z-index:999;
}

.ikape-search-wrap.is-open .ikape-search-dropdown,
.ikape-user-wrap.is-open .ikape-user-dropdown,
.ikape-cart-wrap.is-open .ikape-cart-dropdown{
opacity:1;
pointer-events:all;
transform:translateY(0);
}

/* Buscador */
.ikape-search-dropdown{
width:320px;
padding:16px;
}

.ikape-search-field-wrap{
display:flex;
align-items:center;
gap:10px;
background:#f7f7f7;
border-radius:12px;
padding:10px 14px;
}

.ikape-search-field-wrap svg{
color:#9ca3af;
flex-shrink:0;
}

.ikape-search-input{
border:none;
background:transparent;
outline:none;
font-size:15px;
color:#111111;
width:100%;
font-family:inherit;
}

.ikape-search-input::placeholder{
color:#9ca3af;
}

/* Usuario */
.ikape-user-dropdown{
width:240px;
padding:20px;
}

.ikape-user-greeting{
padding-bottom:14px;
border-bottom:1px solid #f0f0f0;
margin-bottom:12px;
}

.ikape-user-greeting strong{
display:block;
font-size:14px;
color:#111111;
margin-bottom:2px;
}

.ikape-user-greeting span{
font-size:12px;
color:#9ca3af;
}

.ikape-user-guest p{
font-size:13px;
color:#6b7280;
margin-bottom:14px;
line-height:1.5;
}

.ikape-user-links{
display:flex;
flex-direction:column;
gap:2px;
}

.ikape-user-links a{
display:flex;
align-items:center;
gap:10px;
padding:9px 10px;
border-radius:10px;
font-size:14px;
color:#4b5563;
transition:background .2s, color .2s;
}

.ikape-user-links a:hover{
background:#f7f7f7;
color:#111111;
}

.ikape-user-logout{
color:#ef4444 !important;
margin-top:6px;
border-top:1px solid #f0f0f0;
padding-top:10px !important;
}

.ikape-user-logout:hover{
background:#fef2f2 !important;
}

.ikape-user-login-btn,
.ikape-user-register-btn{
text-align:center;
justify-content:center;
border-radius:999px !important;
font-weight:600 !important;
}

.ikape-user-login-btn{
background:#111111 !important;
color:#ffffff !important;
margin-bottom:6px;
}

.ikape-user-register-btn{
background:#f7f7f7 !important;
color:#111111 !important;
border:1px solid #e0e0e0;
}

/* Carrito dropdown */
.ikape-cart-dropdown{
width:320px;
}

.ikape-cart-items{
padding:16px;
display:flex;
flex-direction:column;
gap:14px;
max-height:280px;
overflow-y:auto;
}

.ikape-cart-item{
display:grid;
grid-template-columns:56px 1fr;
gap:12px;
align-items:center;
}

.ikape-cart-item-img img{
width:56px;
height:56px;
object-fit:contain;
border-radius:10px;
background:#f7f7f7;
padding:4px;
}

.ikape-cart-item-info{
display:flex;
flex-direction:column;
gap:2px;
}

.ikape-cart-item-name{
font-size:13px;
font-weight:600;
color:#111111;
line-height:1.3;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

.ikape-cart-item-qty{
font-size:12px;
color:#9ca3af;
}

.ikape-cart-item-price{
font-size:13px;
font-weight:600;
color:#111111;
}

.ikape-cart-footer{
padding:14px 16px;
border-top:1px solid #f0f0f0;
display:flex;
flex-direction:column;
gap:10px;
}

.ikape-cart-total{
display:flex;
justify-content:space-between;
align-items:center;
font-size:15px;
}

.ikape-cart-total span{ color:#6b7280; }
.ikape-cart-total strong{ color:#111111; font-weight:700; }

.ikape-cart-view-btn,
.ikape-cart-checkout-btn{
display:block;
text-align:center;
border-radius:999px;
padding:11px 16px;
font-size:14px;
font-weight:600;
transition:background .2s, transform .2s;
}

.ikape-cart-view-btn{
background:#f7f7f7;
color:#111111;
border:1px solid #e0e0e0;
}

.ikape-cart-view-btn:hover{ background:#ebebeb; }

.ikape-cart-checkout-btn{
background:#111111;
color:#ffffff;
box-shadow:0 4px 12px rgba(0,0,0,0.12);
}

.ikape-cart-checkout-btn:hover{
background:#333333;
transform:translateY(-1px);
}

.ikape-cart-empty{
padding:32px 16px;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
}

.ikape-cart-empty p{ font-size:14px; color:#9ca3af; }

.ikape-cart-empty a{
font-size:14px;
font-weight:600;
color:#111111;
text-decoration:underline;
text-underline-offset:3px;
}

/* Burger */
.ikape-burger{
display:none;
flex-direction:column;
justify-content:center;
gap:5px;
width:40px;
height:40px;
border:none;
background:transparent;
cursor:pointer;
padding:8px;
border-radius:10px;
transition:background .2s;
}

.ikape-burger:hover{ background:#f7f7f7; }

.ikape-burger span{
display:block;
width:100%;
height:2px;
background:#111111;
border-radius:2px;
transition:transform .3s, opacity .3s;
transform-origin:center;
}

.ikape-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.ikape-burger.is-open span:nth-child(2){ opacity:0; }
.ikape-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Overlay */
.ikape-mobile-overlay{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.5);
z-index:1099;
opacity:0;
transition:opacity .3s;
backdrop-filter:blur(2px);
}

.ikape-mobile-overlay.is-open{
opacity:1;
}

/* Drawer */
.ikape-mobile-menu{
position:fixed;
top:0;
left:0;
bottom:0;
width:300px;
max-width:85vw;
background:#ffffff;
z-index:1100;
transform:translateX(-100%);
transition:transform .35s cubic-bezier(.4,0,.2,1);
display:flex;
flex-direction:column;
box-shadow:8px 0 40px rgba(0,0,0,0.15);
}

.ikape-mobile-menu.is-open{
transform:translateX(0);
}

.ikape-mobile-menu-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:16px 20px;
border-bottom:1px solid #f0f0f0;
}

.ikape-mobile-menu-header img{
height:36px;
width:auto;
}

.ikape-mobile-close{
width:36px;
height:36px;
border:none;
background:#f7f7f7;
border-radius:999px;
font-size:20px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
color:#111111;
transition:background .2s;
}

.ikape-mobile-close:hover{ background:#ebebeb; }

.ikape-mobile-nav{
flex:1;
overflow-y:auto;
padding:8px 0;
}

.ikape-mobile-menu .ikape-mobile-nav > ul{
display:block !important;
float:none !important;
width:100% !important;
list-style:none !important;
padding:0 16px !important;
margin:0 !important;
}

.ikape-mobile-menu .ikape-mobile-nav > ul > li{
display:block !important;
float:none !important;
width:100% !important;
}

.ikape-mobile-menu-list li a{
display:flex;
align-items:center;
padding:14px 16px;
font-size:16px;
font-weight:600;
color:#111111;
border-radius:14px;
transition:background .2s, color .2s;
}

.ikape-mobile-menu-list li a:hover,
.ikape-mobile-menu-list li.current-menu-item a{
background:#f4f4f4;
color:#111111;
}

.ikape-mobile-menu-list li.current-menu-item a{
background:#111111;
color:#ffffff;
}

/* Info de contacto dentro del drawer */
.ikape-mobile-info{
margin:8px 16px 0;
padding:16px;
background:#f7f7f7;
border-radius:16px;
display:flex;
flex-direction:column;
gap:10px;
}

.ikape-mobile-info a{
display:flex;
align-items:center;
gap:10px;
font-size:13px;
color:#4b5563;
transition:color .2s;
}

.ikape-mobile-info a:hover{ color:#111111; }

.ikape-mobile-menu-footer{
padding:16px;
border-top:1px solid #f0f0f0;
display:flex;
flex-direction:column;
gap:10px;
}

.ikape-mobile-account-btn{
display:flex;
align-items:center;
gap:10px;
background:#111111;
color:#ffffff;
padding:14px 18px;
border-radius:999px;
font-size:14px;
font-weight:600;
justify-content:center;
transition:background .2s;
}

.ikape-mobile-account-btn:hover{ background:#333333; }

.ikape-mobile-social{
display:flex;
align-items:center;
justify-content:center;
gap:16px;
padding:8px 0 4px;
}

.ikape-mobile-social a{
width:40px;
height:40px;
border-radius:12px;
background:#f7f7f7;
display:flex;
align-items:center;
justify-content:center;
color:#4b5563;
transition:background .2s, color .2s;
}

.ikape-mobile-social a:hover{
background:#111111;
color:#ffffff;
}

@media(max-width:768px){
.ikape-header-inner{
display:flex;
align-items:center;
justify-content:space-between;
height:60px;
gap:0;
}
.ikape-main-nav{ display:none; }
.ikape-burger{ display:flex; margin:0 auto; }
.ikape-logo{ flex-shrink:0; }
.ikape-header-actions{ flex-shrink:0; gap:0; }
.ikape-search-dropdown{ width:260px; right:-50px; }
.ikape-cart-dropdown,
.ikape-user-dropdown{ right:-8px; }
.ikape-mobile-overlay{ display:block; pointer-events:none; }
.ikape-mobile-overlay.is-open{ pointer-events:all; }
}

/* =========================
HERO
========================= */

.ikape-hero{
position:relative;
min-height:92vh;
display:flex;
align-items:center;
background:#0a0a0a;
overflow:hidden;
}

/* Fondo con imagen (cuando esté disponible) */
.ikape-hero-bg{
position:absolute;
inset:0;
background:linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
z-index:0;
}

/* Efecto de textura sutil */
.ikape-hero-bg::after{
content:"";
position:absolute;
inset:0;
background-image:radial-gradient(circle at 20% 50%, rgba(220,38,38,0.08) 0%, transparent 50%),
                 radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

/* Elementos decorativos */
.ikape-hero-deco{
position:absolute;
border-radius:999px;
z-index:0;
}

.ikape-hero-deco-1{
width:600px;
height:600px;
background:radial-gradient(circle, rgba(220,38,38,0.12) 0%, transparent 70%);
top:-200px;
right:-100px;
}

.ikape-hero-deco-2{
width:400px;
height:400px;
background:radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
bottom:-100px;
left:10%;
}

/* Layout interno */
.ikape-hero-inner{
position:relative;
z-index:1;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
padding:80px 0;
}

/* Contenido izquierdo */
.ikape-hero-content{
display:flex;
flex-direction:column;
gap:0;
}

/* Badge */
.ikape-hero-badge{
display:inline-flex;
align-items:center;
gap:8px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
border-radius:999px;
padding:6px 14px;
font-size:12px;
color:rgba(255,255,255,0.75);
letter-spacing:.04em;
margin-bottom:24px;
width:fit-content;
}

.ikape-hero-badge-dot{
width:7px;
height:7px;
border-radius:999px;
background:#22c55e;
box-shadow:0 0 8px rgba(34,197,94,0.6);
animation:ikape-pulse 2s infinite;
}

@keyframes ikape-pulse{
0%,100%{ opacity:1; transform:scale(1); }
50%{ opacity:.7; transform:scale(1.3); }
}

/* Kicker */
.ikape-kicker{
font-size:11px;
text-transform:uppercase;
letter-spacing:2px;
margin-bottom:16px;
color:rgba(255,255,255,0.4);
}

/* H1 */
.ikape-hero h1{
font-size:64px;
line-height:1.05;
font-weight:800;
color:#ffffff;
margin-bottom:24px;
letter-spacing:-1.5px;
}

.ikape-hero-h1-accent{
background:linear-gradient(135deg, #ef4444, #dc2626);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}

/* Texto */
.ikape-hero-text{
font-size:17px;
line-height:1.65;
color:rgba(255,255,255,0.55);
margin-bottom:36px;
max-width:460px;
}

/* Botones */
.ikape-hero-actions{
display:flex;
align-items:center;
gap:14px;
margin-bottom:48px;
flex-wrap:wrap;
}

.ikape-btn{
display:inline-flex;
align-items:center;
gap:8px;
background:#ffffff;
color:#111111;
padding:14px 24px;
border-radius:999px;
font-size:15px;
font-weight:600;
transition:background .2s, transform .2s, box-shadow .2s;
}

.ikape-btn:hover{
background:#f0f0f0;
transform:translateY(-2px);
box-shadow:0 8px 24px rgba(0,0,0,0.2);
}

.ikape-btn-hero{
background:#ffffff;
color:#111111;
box-shadow:0 4px 20px rgba(255,255,255,0.15);
}

.ikape-btn-ghost{
display:inline-flex;
align-items:center;
padding:14px 24px;
border-radius:999px;
font-size:15px;
font-weight:600;
color:rgba(255,255,255,0.7);
border:1px solid rgba(255,255,255,0.18);
transition:color .2s, border-color .2s, background .2s;
}

.ikape-btn-ghost:hover{
color:#ffffff;
border-color:rgba(255,255,255,0.4);
background:rgba(255,255,255,0.06);
}

/* Stats */
.ikape-hero-stats{
display:flex;
align-items:center;
gap:20px;
}

.ikape-hero-stat{
display:flex;
flex-direction:column;
gap:2px;
}

.ikape-hero-stat strong{
font-size:20px;
font-weight:800;
color:#ffffff;
line-height:1;
}

.ikape-hero-stat span{
font-size:11px;
color:rgba(255,255,255,0.4);
text-transform:uppercase;
letter-spacing:.08em;
}

.ikape-hero-stat-divider{
width:1px;
height:32px;
background:rgba(255,255,255,0.12);
}

/* Visual derecho */
.ikape-hero-visual{
display:flex;
align-items:center;
justify-content:center;
}

.ikape-hero-img-wrap{
position:relative;
width:100%;
max-width:480px;
}

.ikape-hero-img-placeholder{
width:100%;
aspect-ratio:4/5;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
border-radius:32px;
display:flex;
align-items:center;
justify-content:center;
backdrop-filter:blur(10px);
}

.ikape-hero-img{
width:100%;
aspect-ratio:4/5;
object-fit:cover;
border-radius:32px;
display:block;
box-shadow:0 32px 80px rgba(0,0,0,0.5);
}

.ikape-hero-img-inner{
text-align:center;
color:rgba(255,255,255,0.2);
}

.ikape-hero-img-inner p{
font-size:13px;
margin-top:12px;
line-height:1.5;
}

/* Tarjetas flotantes */
.ikape-hero-float{
position:absolute;
display:flex;
align-items:center;
gap:10px;
background:#ffffff;
border-radius:16px;
padding:12px 16px;
box-shadow:0 8px 32px rgba(0,0,0,0.3);
min-width:190px;
}

.ikape-hero-float div{
display:flex;
flex-direction:column;
gap:1px;
}

.ikape-hero-float strong{
font-size:13px;
font-weight:700;
color:#111111;
line-height:1;
}

.ikape-hero-float span{
font-size:11px;
color:#6b7280;
}

.ikape-hero-float-top{
top:-20px;
right:-20px;
animation:ikape-float 3s ease-in-out infinite;
}

.ikape-hero-float-bottom{
bottom:30px;
left:-30px;
animation:ikape-float 3s ease-in-out infinite reverse;
animation-delay:.5s;
}

@keyframes ikape-float{
0%,100%{ transform:translateY(0); }
50%{ transform:translateY(-8px); }
}

/* Responsive hero */
@media(max-width:960px){
.ikape-hero{
min-height:auto;
}
.ikape-hero-inner{
grid-template-columns:1fr;
gap:40px;
padding:60px 0;
}
.ikape-hero-visual{
display:none;
}
.ikape-hero h1{
font-size:48px;
}
}

@media(max-width:600px){
.ikape-hero h1{
font-size:36px;
letter-spacing:-1px;
}
.ikape-hero-text{ font-size:15px; }
.ikape-hero-stats{ gap:14px; }
}

/* =========================
SECCIONES GENERALES
========================= */

.ikape-section-heading{
max-width:720px;
margin-bottom:40px;
}

.ikape-section-kicker{
font-size:13px;
text-transform:uppercase;
letter-spacing:1.5px;
color:#6b7280;
margin-bottom:12px;
}

.ikape-section-heading h2{
font-size:40px;
line-height:1.15;
color:#111111;
margin-bottom:14px;
}

.ikape-section-heading p{
font-size:17px;
color:#4b5563;
}

/* =========================
CATEGORIAS HOME
========================= */

.ikape-categories{
padding:90px 0;
background:#ffffff;
}

.ikape-categories-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:28px;
}

.ikape-category-card{
display:block;
background:#ffffff;
border:1px solid #ebebeb;
border-radius:24px;
overflow:hidden;
transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ikape-category-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 42px rgba(0,0,0,0.07);
border-color:#dcdcdc;
}

.ikape-category-image-wrap{
aspect-ratio:4 / 3;
overflow:hidden;
background:#f4f4f4;
}

.ikape-category-image-wrap img{
width:100%;
height:100%;
object-fit:cover;
transform:scale(1.05);
animation:ikapeImageIntro .7s ease forwards;
transition:transform .4s ease;
}

.ikape-category-card:hover .ikape-category-image-wrap img{
transform:scale(1.09);
}

.ikape-category-content{
padding:24px;
}

.ikape-category-content h3{
font-size:24px;
line-height:1.2;
margin-bottom:10px;
color:#111111;
}

.ikape-category-content p{
font-size:15px;
color:#4b5563;
margin-bottom:18px;
}

.ikape-category-content span{
font-size:14px;
font-weight:600;
color:#111111;
}

/* =========================
PRODUCTOS RECOMENDADOS HOME
========================= */

.ikape-featured-products{
padding:90px 0;
background:#f7f7f7;
}

.ikape-products-grid ul.products,
.ikape-products-grid ul.products.columns-1,
.ikape-products-grid ul.products.columns-2,
.ikape-products-grid ul.products.columns-3,
.ikape-products-grid ul.products.columns-4,
.ikape-products-grid ul.products.columns-5{
margin-top:40px;
display:grid !important;
grid-template-columns:repeat(4, 1fr) !important;
gap:28px;
list-style:none;
padding:0;
}

.ikape-products-grid ul.products::before,
.ikape-products-grid ul.products::after{
display:none !important;
content:none !important;
}

.ikape-products-grid ul.products li.product{
width:100% !important;
margin:0 !important;
float:none !important;
border:none;
background:#ffffff;
border-radius:24px;
padding:20px;
transition:
transform .28s ease,
box-shadow .28s ease,
border-color .28s ease,
background-color .28s ease;
display:flex;
flex-direction:column;
height:100%;
min-height:470px;
box-shadow:0 4px 14px rgba(0,0,0,0.03);
border:1px solid rgba(0,0,0,0.04);
opacity:0;
transform:translateY(14px);
animation:ikapeFadeUp .55s ease forwards;
}

.ikape-products-grid ul.products li.product:nth-child(2){
animation-delay:.06s;
}

.ikape-products-grid ul.products li.product:nth-child(3){
animation-delay:.12s;
}

.ikape-products-grid ul.products li.product:nth-child(4){
animation-delay:.18s;
}

.ikape-products-grid ul.products li.product:hover{
transform:translateY(-6px);
box-shadow:0 18px 36px rgba(0,0,0,0.08);
border-color:rgba(0,0,0,0.08);
}

.ikape-products-grid ul.products li.product a.woocommerce-LoopProduct-link{
display:flex;
flex-direction:column;
flex:1 1 auto;
}

.ikape-products-grid ul.products li.product img{
border-radius:16px;
aspect-ratio:1 / 1;
object-fit:contain;
background:#fafafa;
padding:12px;
margin-bottom:14px;
transition:transform .35s ease, background-color .35s ease;
transform:scale(1);
}

.ikape-products-grid ul.products li.product:hover img{
transform:scale(1.06);
background:#f4f4f4;
}

.ikape-products-grid ul.products li.product .woocommerce-loop-product__title{
font-size:18px;
line-height:1.35;
margin-top:0;
margin-bottom:8px;
display:block;
min-height:58px;
max-height:58px;
overflow:hidden;
max-width:185px;
width:100%;
word-break:normal;
overflow-wrap:break-word;
}

.ikape-products-grid ul.products li.product .price{
font-weight:600;
margin:0 0 12px 0;
display:block;
margin-top:0;
color:#111111;
}

.ikape-products-grid ul.products li.product .button{
border-radius:999px;
padding:11px 18px;
margin-top:auto;
align-self:flex-start;
background:#111111;
color:#ffffff;
font-weight:600;
font-size:14px;
line-height:1.2;
border:1px solid #111111;
transition:
background-color .25s ease,
color .25s ease,
transform .25s ease,
box-shadow .25s ease;
box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.ikape-products-grid ul.products li.product .button:hover{
background:#ffffff;
color:#111111;
transform:translateY(-1px);
box-shadow:0 10px 20px rgba(0,0,0,0.10);
}

/* =========================
TIENDA / CATEGORIAS
========================= */

.ikape-shop-hero .container,
.ikape-shop-content .container{
width:min(1520px, 96%);
max-width:none;
}

.ikape-shop-hero{
padding:70px 0 40px;
background:#ffffff;
}

.ikape-shop-hero h1{
font-size:48px;
line-height:1.1;
margin-bottom:16px;
color:#111111;
max-width:1200px;
}

.ikape-shop-hero p{
font-size:17px;
color:#4b5563;
max-width:760px;
}

.ikape-shop-content{
padding:10px 0 90px;
background:#ffffff;
}

.ikape-shop-layout{
display:grid;
grid-template-columns:260px minmax(0, 1fr);
gap:34px;
align-items:start;
}

.ikape-shop-sidebar{
position:relative;
}

.ikape-shop-sidebar-inner{
position:sticky;
top:24px;
background:#ffffff;
border:1px solid #ebebeb;
border-radius:24px;
padding:24px;
box-shadow:0 6px 20px rgba(0,0,0,0.03);
}

.ikape-shop-sidebar-heading{
margin-bottom:20px;
}

.ikape-shop-sidebar-heading h2{
font-size:24px;
line-height:1.2;
color:#111111;
}

.ikape-filter-widget{
padding:18px 0;
border-top:1px solid #efefef;
}

.ikape-filter-widget:first-of-type{
border-top:none;
padding-top:0;
}

.ikape-filter-title{
font-size:16px;
line-height:1.3;
margin-bottom:12px;
color:#111111;
}

.ikape-filter-widget ul{
display:flex;
flex-direction:column;
gap:10px;
}

.ikape-filter-widget ul li,
.ikape-filter-widget label,
.ikape-filter-widget .wc-block-product-categories-list-item{
font-size:14px;
color:#4b5563;
}

.ikape-filter-widget a{
color:#4b5563;
transition:color .2s ease;
}

.ikape-filter-widget a:hover{
color:#111111;
}

.ikape-filter-widget .price_slider_wrapper,
.ikape-filter-widget .wc-block-price-filter{
margin-top:12px;
}

.ikape-filter-widget .wc-block-product-filter-price-slider__content{
display:grid !important;
grid-template-columns:1fr 1fr !important;
grid-template-areas:
"range range"
"left right" !important;
gap:10px 12px !important;
align-items:center !important;
}

.ikape-filter-widget .wc-block-product-filter-price-slider__range{
grid-area:range;
width:100%;
}

.ikape-filter-widget .wc-block-product-filter-price-slider__left{
grid-area:left;
justify-self:start;
width:96px !important;
min-width:96px !important;
max-width:96px !important;
}

.ikape-filter-widget .wc-block-product-filter-price-slider__right{
grid-area:right;
justify-self:end;
width:96px !important;
min-width:96px !important;
max-width:96px !important;
}

.ikape-filter-widget .wc-block-product-filter-price-slider .text input[type="text"]{
width:96px !important;
min-width:96px !important;
max-width:96px !important;
height:34px !important;
padding:6px 8px !important;
font-size:12px !important;
line-height:1 !important;
box-sizing:border-box !important;
border:1px solid #111111 !important;
border-radius:6px !important;
}

.ikape-filter-widget .wc-block-product-filter-price-slider .text{
max-width:none !important;
width:auto !important;
padding:0 !important;
margin:0 !important;
}

.ikape-shop-main{
min-width:0;
}

.ikape-shop-toolbar{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
margin-bottom:24px;
padding:0 2px;
}

.ikape-shop-toolbar .woocommerce-result-count{
font-size:14px;
color:#666666;
margin:0;
}

.ikape-shop-toolbar .woocommerce-ordering{
margin:0;
}

.ikape-shop-toolbar select{
border:1px solid #dddddd;
background:#ffffff;
border-radius:999px;
padding:10px 16px;
font-size:14px;
outline:none;
}

.ikape-shop-grid ul.products{
margin-top:0;
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:22px;
list-style:none;
padding:0;
}

.ikape-shop-grid ul.products::before,
.ikape-shop-grid ul.products::after{
content:none !important;
display:none !important;
}

.ikape-shop-grid ul.products li.product{
width:100% !important;
margin:0 !important;
float:none !important;
clear:none !important;
border:none;
background:#ffffff;
border-radius:24px;
padding:18px;
transition:
transform .28s ease,
box-shadow .28s ease,
border-color .28s ease,
background-color .28s ease;
display:flex;
flex-direction:column;
height:100%;
min-height:450px;
box-shadow:0 4px 14px rgba(0,0,0,0.03);
border:1px solid rgba(0,0,0,0.04);
opacity:1;
transform:none;
animation:none;
}

.ikape-shop-grid ul.products li.product:hover{
transform:translateY(-6px);
box-shadow:0 18px 36px rgba(0,0,0,0.08);
border-color:rgba(0,0,0,0.08);
}

.ikape-shop-grid ul.products li.product a.woocommerce-LoopProduct-link{
display:flex;
flex-direction:column;
flex:1 1 auto;
}

.ikape-shop-grid ul.products li.product img{
border-radius:16px;
aspect-ratio:1 / 1;
object-fit:contain;
background:#fafafa;
padding:12px;
margin-bottom:14px;
transition:transform .35s ease, background-color .35s ease;
transform:scale(1);
}

.ikape-shop-grid ul.products li.product:hover img{
transform:scale(1.06);
background:#f4f4f4;
}

.ikape-shop-grid ul.products li.product .woocommerce-loop-product__title{
font-size:17px;
line-height:1.35;
margin-top:0;
margin-bottom:8px;
display:block;
min-height:56px;
max-height:56px;
overflow:hidden;
max-width:180px;
width:100%;
word-break:normal;
overflow-wrap:break-word;
}

.ikape-shop-grid ul.products li.product .price{
font-weight:600;
margin:0 0 12px 0;
display:block;
margin-top:0;
color:#111111;
font-size:15px;
}

.ikape-shop-grid ul.products li.product .button{
border-radius:999px;
padding:10px 16px;
margin-top:auto;
align-self:flex-start;
background:#111111;
color:#ffffff;
font-weight:600;
font-size:14px;
line-height:1.2;
border:1px solid #111111;
transition:
background-color .25s ease,
color .25s ease,
transform .25s ease,
box-shadow .25s ease;
box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.ikape-shop-grid ul.products li.product .button:hover{
background:#ffffff;
color:#111111;
transform:translateY(-1px);
box-shadow:0 10px 20px rgba(0,0,0,0.10);
}

.ikape-no-products{
padding:60px 0;
text-align:left;
}

.ikape-no-products h2{
font-size:30px;
line-height:1.2;
margin-bottom:12px;
}

.ikape-no-products p{
font-size:16px;
color:#4b5563;
}

.ikape-shop-content nav.woocommerce-pagination{
margin-top:36px;
}

.ikape-shop-content nav.woocommerce-pagination ul{
border:none !important;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.ikape-shop-content nav.woocommerce-pagination ul li{
border:none !important;
}

.ikape-shop-content nav.woocommerce-pagination ul li a,
.ikape-shop-content nav.woocommerce-pagination ul li span{
border:1px solid #e5e5e5;
background:#ffffff;
color:#111111;
border-radius:999px;
padding:10px 14px;
min-width:42px;
display:inline-flex;
align-items:center;
justify-content:center;
}

.ikape-shop-content nav.woocommerce-pagination ul li span.current{
background:#111111;
color:#ffffff;
border-color:#111111;
}

/* =========================
PAGINA INDIVIDUAL PRODUCTO
========================= */

.ikape-single-product{
padding:38px 0 90px;
background:#ffffff;
}

.ikape-single-product .woocommerce-breadcrumb{
font-size:14px;
color:#6b7280;
margin-bottom:26px;
}

.ikape-single-product .woocommerce-breadcrumb a{
color:#6b7280;
}

.ikape-single-product .woocommerce-breadcrumb a:hover{
color:#111111;
}

.ikape-single-grid{
display:grid;
grid-template-columns:minmax(0, 1.08fr) minmax(360px, .92fr);
gap:42px;
align-items:start;
margin-bottom:56px;
}

.ikape-single-gallery{
background:#ffffff;
}

/* Ocultar todo lo de FlexSlider */
.ikape-single-gallery .woocommerce-product-gallery{
width:100% !important;
float:none !important;
margin:0 !important;
display:block !important;
position:relative;
}

/* ===== GALERIA CUSTOM ===== */

.ikape-gallery-custom{
display:flex;
flex-direction:column;
gap:14px;
}

.ikape-gallery-main{
position:relative;
width:100%;
height:520px;
background:#f7f7f7;
border-radius:24px;
border:1px solid #ebebeb;
overflow:hidden;
cursor:zoom-in;
display:flex;
align-items:center;
justify-content:center;
}

.ikape-gallery-main-img{
display:block;
max-width:calc(100% - 48px);
max-height:calc(100% - 48px);
width:auto;
height:auto;
object-fit:contain;
transition:opacity .2s ease, transform .25s ease;
opacity:1;
}

.ikape-gallery-main:hover .ikape-gallery-main-img{
transform:scale(1.03);
}

.ikape-gallery-zoom-badge{
position:absolute;
top:14px;
right:14px;
width:36px;
height:36px;
border-radius:999px;
background:rgba(255,255,255,0.92);
border:1px solid #e5e5e5;
display:flex;
align-items:center;
justify-content:center;
color:#555;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
pointer-events:none;
}

/* Thumbnails */
.ikape-gallery-thumbs-row{
display:grid;
grid-template-columns:38px minmax(0,1fr) 38px;
align-items:center;
gap:8px;
}

.ikape-gallery-thumb-arrow{
width:38px;
height:38px;
border-radius:999px;
border:1px solid #e5e5e5;
background:#fff;
color:#111;
font-size:26px;
line-height:1;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 4px 12px rgba(0,0,0,0.07);
transition:box-shadow .2s, transform .2s;
flex-shrink:0;
}

.ikape-gallery-thumb-arrow:hover{
transform:translateY(-1px);
box-shadow:0 8px 18px rgba(0,0,0,0.10);
}

.ikape-gallery-thumb-viewport{
overflow:hidden;
position:relative;
}

.ikape-gallery-thumb-viewport::before,
.ikape-gallery-thumb-viewport::after{
content:"";
position:absolute;
top:0;
width:32px;
height:100%;
pointer-events:none;
z-index:2;
}

.ikape-gallery-thumb-viewport::before{
left:0;
background:linear-gradient(to right,#fff,rgba(255,255,255,0));
}

.ikape-gallery-thumb-viewport::after{
right:0;
background:linear-gradient(to left,#fff,rgba(255,255,255,0));
}

.ikape-gallery-thumb-track{
display:flex;
gap:10px;
overflow-x:auto;
scroll-behavior:smooth;
scrollbar-width:none;
padding:4px 2px;
}

.ikape-gallery-thumb-track::-webkit-scrollbar{
display:none;
}

.ikape-gallery-thumb{
flex:0 0 100px;
width:100px;
height:80px;
border-radius:14px;
border:1.5px solid #e5e5e5;
background:#fafafa;
overflow:hidden;
cursor:pointer;
padding:6px;
transition:border-color .2s, transform .2s, box-shadow .2s;
display:flex;
align-items:center;
justify-content:center;
}

.ikape-gallery-thumb img{
width:100%;
height:100%;
object-fit:contain;
border-radius:8px;
display:block;
}

.ikape-gallery-thumb:hover{
border-color:#bbb;
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,0.07);
}

.ikape-gallery-thumb.is-active{
border-color:#111;
box-shadow:0 6px 18px rgba(0,0,0,0.13);
}

/* ===== LIGHTBOX ===== */

.ikape-lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,0);
z-index:99999;
display:flex;
align-items:center;
justify-content:center;
transition:background .25s ease;
}

.ikape-lightbox.is-visible{
background:rgba(10,10,10,0.92);
}

.ikape-lightbox-inner{
max-width:90vw;
max-height:90vh;
display:flex;
align-items:center;
justify-content:center;
}

.ikape-lightbox-img{
max-width:88vw;
max-height:88vh;
object-fit:contain;
border-radius:12px;
transition:opacity .15s ease;
opacity:1;
display:block;
}

.ikape-lightbox-close{
position:fixed;
top:20px;
right:24px;
width:44px;
height:44px;
border-radius:999px;
background:rgba(255,255,255,0.12);
border:1px solid rgba(255,255,255,0.2);
color:#fff;
font-size:26px;
line-height:1;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:background .2s;
z-index:2;
}

.ikape-lightbox-close:hover{
background:rgba(255,255,255,0.22);
}

.ikape-lightbox-arrow{
position:fixed;
top:50%;
transform:translateY(-50%);
width:52px;
height:52px;
border-radius:999px;
background:rgba(255,255,255,0.12);
border:1px solid rgba(255,255,255,0.2);
color:#fff;
font-size:36px;
line-height:1;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:background .2s;
z-index:2;
}

.ikape-lightbox-arrow:hover{
background:rgba(255,255,255,0.22);
}

.ikape-lightbox-prev{ left:20px; }
.ikape-lightbox-next{ right:20px; }

.ikape-lightbox-counter{
position:fixed;
bottom:24px;
left:50%;
transform:translateX(-50%);
color:rgba(255,255,255,0.7);
font-size:13px;
letter-spacing:.06em;
}

.ikape-single-summary-wrap{
position:relative;
}

.ikape-single-summary-card{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:28px;
padding:32px;
box-shadow:0 8px 26px rgba(0,0,0,0.04);
position:sticky;
top:24px;
}

.ikape-single-kicker{
font-size:13px;
letter-spacing:1.4px;
text-transform:uppercase;
color:#6b7280;
margin-bottom:14px;
}

.ikape-single-title{
font-size:46px;
line-height:1.05;
font-weight:700;
color:#111111;
margin-bottom:18px;
}

.ikape-single-stock{
display:inline-flex;
align-items:center;
padding:7px 12px;
border-radius:999px;
font-size:13px;
font-weight:600;
margin-bottom:18px;
}

.ikape-single-stock.in-stock{
background:#ecfdf3;
color:#157347;
border:1px solid #c7f0d8;
}

.ikape-single-stock.out-of-stock{
background:#fff1f1;
color:#b42318;
border:1px solid #f3c4c4;
}

.ikape-single-price{
margin-bottom:18px;
}

.ikape-single-price .price{
font-size:34px !important;
line-height:1.1;
font-weight:700 !important;
color:#111111 !important;
}

.ikape-single-price del{
opacity:.45;
font-size:.7em;
}

.ikape-single-short-description{
font-size:16px;
color:#4b5563;
margin-bottom:24px;
}

.ikape-single-short-description p:last-child{
margin-bottom:0;
}

.ikape-single-add-to-cart{
margin-bottom:28px;
}

.ikape-single-add-to-cart form.cart{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:12px;
margin:0 !important;
}

.ikape-single-add-to-cart .quantity{
margin:0 !important;
}

.ikape-single-add-to-cart .quantity .qty{
height:48px;
min-width:82px;
border:1px solid #dddddd;
border-radius:999px;
padding:0 16px;
font-size:15px;
outline:none;
}

.ikape-single-add-to-cart .single_add_to_cart_button,
.ikape-single-add-to-cart .button.alt{
height:48px;
padding:0 24px !important;
border-radius:999px !important;
background:#111111 !important;
color:#ffffff !important;
border:1px solid #111111 !important;
font-size:15px !important;
font-weight:600 !important;
line-height:46px !important;
transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease !important;
box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.ikape-single-add-to-cart .single_add_to_cart_button:hover,
.ikape-single-add-to-cart .button.alt:hover{
background:#ffffff !important;
color:#111111 !important;
transform:translateY(-1px);
box-shadow:0 12px 24px rgba(0,0,0,0.10);
}

.ikape-single-trust{
display:grid;
gap:14px;
padding-top:22px;
margin-top:4px;
border-top:1px solid #ececec;
}

.ikape-single-trust-item{
display:grid;
gap:3px;
}

.ikape-single-trust-item strong{
font-size:15px;
line-height:1.3;
color:#111111;
}

.ikape-single-trust-item span{
font-size:14px;
line-height:1.5;
color:#6b7280;
}

.ikape-single-meta{
margin-top:24px;
padding-top:20px;
border-top:1px solid #ececec;
font-size:14px;
color:#6b7280;
}

.ikape-single-meta .product_meta{
display:grid;
gap:8px;
}

.ikape-single-meta a{
color:#111111;
}

.ikape-single-extra-content{
display:grid;
gap:44px;
margin-bottom:64px;
}

.ikape-single-description-block{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:28px;
padding:34px;
}

.ikape-single-section-head{
margin-bottom:22px;
}

.ikape-single-section-head h2{
font-size:36px;
line-height:1.12;
color:#111111;
}

.ikape-single-description-content{
font-size:16px;
line-height:1.8;
color:#4b5563;
}

.ikape-single-description-content h2,
.ikape-single-description-content h3,
.ikape-single-description-content h4{
color:#111111;
margin:20px 0 10px;
}

.ikape-single-description-content p,
.ikape-single-description-content ul,
.ikape-single-description-content ol{
margin-bottom:16px;
}

.ikape-single-description-content ul,
.ikape-single-description-content ol{
padding-left:18px;
list-style:initial;
}

.ikape-single-tabs-block{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:28px;
padding:34px;
}

.ikape-single-tabs-block #reviews,
.ikape-single-tabs-block .commentlist,
.ikape-single-tabs-block #review_form_wrapper{
font-size:16px;
line-height:1.7;
color:#4b5563;
}

.ikape-single-tabs-block .comment-reply-title,
.ikape-single-tabs-block h2{
font-size:28px;
line-height:1.15;
margin-bottom:14px;
color:#111111;
}

.ikape-single-related{
margin-top:10px;
}

.ikape-single-related > h2,
.ikape-single-related .related > h2{
font-size:40px;
line-height:1.1;
margin-bottom:24px;
color:#111111;
}

.ikape-single-related ul.products{
display:grid !important;
grid-template-columns:repeat(4, 1fr);
gap:28px;
margin-top:0 !important;
list-style:none;
padding:0;
}

.ikape-single-related ul.products::before,
.ikape-single-related ul.products::after{
display:none !important;
content:none !important;
}

.ikape-single-related ul.products li.product{
width:100% !important;
margin:0 !important;
float:none !important;
background:#ffffff;
border-radius:24px;
padding:20px;
border:1px solid rgba(0,0,0,0.04);
box-shadow:0 4px 14px rgba(0,0,0,0.03);
display:flex;
flex-direction:column;
min-height:450px;
transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ikape-single-related ul.products li.product:hover{
transform:translateY(-6px);
box-shadow:0 18px 36px rgba(0,0,0,0.08);
border-color:rgba(0,0,0,0.08);
}

.ikape-single-related ul.products li.product img{
border-radius:16px;
aspect-ratio:1 / 1;
object-fit:contain;
background:#fafafa;
padding:12px;
margin-bottom:14px;
}

.ikape-single-related ul.products li.product .woocommerce-loop-product__title{
font-size:17px;
line-height:1.35;
margin-bottom:8px;
min-height:56px;
max-height:56px;
overflow:hidden;
}

.ikape-single-related ul.products li.product .price{
font-weight:600;
margin:0 0 12px 0;
color:#111111;
}

.ikape-single-related ul.products li.product .button{
border-radius:999px;
padding:10px 16px;
margin-top:auto;
align-self:flex-start;
background:#111111;
color:#ffffff;
font-weight:600;
font-size:14px;
line-height:1.2;
border:1px solid #111111;
}

/* =========================
BENEFICIOS
========================= */

.ikape-benefits{
padding:90px 0;
background:#ffffff;
}

.ikape-benefits-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:22px;
}

.ikape-benefit-card{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:22px;
padding:28px 24px;
transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ikape-benefit-card:hover{
transform:translateY(-4px);
box-shadow:0 14px 30px rgba(0,0,0,0.06);
border-color:#dcdcdc;
}

.ikape-benefit-icon{
font-size:26px;
line-height:1;
margin-bottom:16px;
}

.ikape-benefit-card h3{
font-size:20px;
line-height:1.25;
margin-bottom:10px;
color:#111111;
}

.ikape-benefit-card p{
font-size:15px;
color:#4b5563;
}

/* =========================
SOBRE IKAPE HOME
========================= */

.ikape-about-home{
padding:90px 0;
background:#f7f7f7;
}

.ikape-about-home-inner{
display:grid;
grid-template-columns:1.05fr .95fr;
gap:40px;
align-items:center;
}

.ikape-about-home-content h2{
font-size:42px;
line-height:1.12;
margin-bottom:18px;
color:#111111;
}

.ikape-about-home-content p{
font-size:17px;
color:#4b5563;
max-width:620px;
margin-bottom:28px;
}

.ikape-about-home-image img{
width:100%;
border-radius:28px;
object-fit:cover;
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
CONTENIDO GENERAL
========================= */

.ikape-default-page{
padding:60px 0;
}

/* =========================
FOOTER
========================= */

.ikape-site-footer{
background:#111111;
color:#ffffff;
}

/* Franja top */
.ikape-footer-top{
background:#1a1a1a;
border-bottom:1px solid rgba(255,255,255,0.08);
padding:16px 0;
}

.ikape-footer-top-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
}

.ikape-footer-top-text{
font-size:14px;
color:rgba(255,255,255,0.6);
letter-spacing:.02em;
}

.ikape-footer-top-btn{
font-size:13px;
font-weight:600;
color:#ffffff;
border:1px solid rgba(255,255,255,0.25);
border-radius:999px;
padding:8px 18px;
transition:border-color .2s, background .2s;
white-space:nowrap;
}

.ikape-footer-top-btn:hover{
border-color:rgba(255,255,255,0.6);
background:rgba(255,255,255,0.06);
}

/* Cuerpo */
.ikape-footer-body{
padding:64px 0 48px;
}

.ikape-footer-grid{
display:grid;
grid-template-columns:1.6fr 1fr 1fr 1fr;
gap:40px;
}

/* Col brand */
.ikape-footer-brand{
display:flex;
flex-direction:column;
gap:20px;
}

.ikape-footer-logo img{
height:52px;
width:auto;
display:block;
filter:brightness(0) invert(1);
}

.ikape-footer-logo-text{
font-size:22px;
font-weight:700;
color:#ffffff;
}

.ikape-footer-desc{
font-size:14px;
color:rgba(255,255,255,0.5);
line-height:1.75;
max-width:280px;
}

/* Redes sociales */
.ikape-footer-social{
display:flex;
gap:10px;
}

.ikape-footer-social a{
width:38px;
height:38px;
border-radius:999px;
border:1px solid rgba(255,255,255,0.15);
display:flex;
align-items:center;
justify-content:center;
color:rgba(255,255,255,0.6);
transition:border-color .2s, color .2s, background .2s;
}

.ikape-footer-social a:hover{
border-color:rgba(255,255,255,0.5);
color:#ffffff;
background:rgba(255,255,255,0.07);
}

/* Columnas de links */
.ikape-footer-col h4{
font-size:13px;
font-weight:600;
text-transform:uppercase;
letter-spacing:1.2px;
color:rgba(255,255,255,0.4);
margin-bottom:18px;
}

.ikape-footer-col ul{
display:flex;
flex-direction:column;
gap:12px;
}

.ikape-footer-col ul li a{
font-size:15px;
color:rgba(255,255,255,0.65);
transition:color .2s ease;
}

.ikape-footer-col ul li a:hover{
color:#ffffff;
}

/* Bottom */
.ikape-footer-bottom{
border-top:1px solid rgba(255,255,255,0.08);
padding:22px 0;
}

.ikape-footer-bottom-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.ikape-footer-bottom p{
font-size:13px;
color:rgba(255,255,255,0.35);
}

.ikape-footer-distribuidor a{
color:rgba(255,255,255,0.5);
transition:color .2s;
}

.ikape-footer-distribuidor a:hover{
color:#ffffff;
}

/* =========================
ANIMACIONES
========================= */

@keyframes ikapeFadeUp{
from{
opacity:0;
transform:translateY(14px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes ikapeImageIntro{
from{
opacity:0;
transform:scale(1.22);
}
to{
opacity:1;
transform:scale(1.05);
}
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1280px){

.ikape-shop-grid ul.products{
grid-template-columns:repeat(3, minmax(0, 1fr));
}

.ikape-single-related ul.products{
grid-template-columns:repeat(3, 1fr);
}
}

@media (max-width: 1100px){

.ikape-single-grid{
grid-template-columns:1fr;
}

.ikape-single-summary-card{
position:relative;
top:auto;
}
}

@media (max-width: 992px){

.ikape-categories-grid{
grid-template-columns:1fr;
}

.ikape-products-grid ul.products{
grid-template-columns:repeat(2, 1fr) !important;
}

.ikape-products-grid ul.products li.product .woocommerce-loop-product__title{
max-width:200px;
}

.ikape-shop-layout{
grid-template-columns:1fr;
}

.ikape-shop-sidebar-inner{
position:relative;
top:auto;
}

.ikape-shop-grid ul.products{
grid-template-columns:repeat(2, 1fr) !important;
}

.ikape-shop-grid ul.products li.product .woocommerce-loop-product__title{
max-width:200px;
}

.ikape-single-title{
font-size:38px;
}

.ikape-single-price .price{
font-size:30px !important;
}

.ikape-single-related ul.products{
grid-template-columns:repeat(2, 1fr);
}

.ikape-benefits-grid{
grid-template-columns:1fr;
}

.ikape-about-home-inner{
grid-template-columns:1fr;
}

.ikape-footer-grid{
grid-template-columns:1fr 1fr;
}
}



@media(max-width:992px){
.ikape-section-heading p{
font-size:16px;
}

.ikape-categories{
padding:70px 0;
}

.ikape-category-content{
padding:20px;
}

.ikape-category-content h3{
font-size:22px;
}

.ikape-featured-products,
.ikape-benefits,
.ikape-about-home,
.ikape-shop-content{
padding:70px 0;
}

.ikape-shop-hero{
padding:55px 0 20px;
}

.ikape-products-grid ul.products li.product,
.ikape-shop-grid ul.products li.product{
min-height:auto;
animation:none;
opacity:1;
transform:none;
}

.ikape-products-grid ul.products li.product img,
.ikape-shop-grid ul.products li.product img{
animation:none;
transform:none;
}

.ikape-products-grid ul.products li.product .woocommerce-loop-product__title,
.ikape-shop-grid ul.products li.product .woocommerce-loop-product__title{
min-height:auto;
max-height:none;
max-width:none;
}
}

.ikape-single-product{
padding:26px 0 70px;
}

.ikape-single-title{
font-size:32px;
}

.ikape-single-summary-card,
.ikape-single-description-block,
.ikape-single-tabs-block{
padding:24px;
border-radius:24px;
}

.ikape-single-gallery .flex-viewport{
height:408px !important;
min-height:408px !important;
max-height:408px !important;
}

.ikape-single-gallery .woocommerce-product-gallery__image{
height:408px;
padding:16px;
}

.ikape-single-gallery .woocommerce-product-gallery__image img{
max-width:calc(100% - 32px) !important;
max-height:calc(100% - 32px) !important;
}

.ikape-thumb-carousel{
grid-template-columns:38px minmax(0, 1fr) 38px;
gap:8px;
}

.ikape-thumb-arrow{
width:38px;
height:38px;
font-size:24px;
}

.ikape-single-gallery .flex-control-thumbs li,
.ikape-single-gallery .flex-control-nav li{
width:96px !important;
min-width:96px !important;
max-width:96px !important;
flex:0 0 96px !important;
}

.ikape-single-gallery .flex-control-thumbs img,
.ikape-single-gallery .flex-control-nav img{
height:68px;
}

}

@media(max-width:768px){
.ikape-benefits-grid{
grid-template-columns:1fr;
}

.ikape-products-grid ul.products{
grid-template-columns:repeat(2, 1fr) !important;
}

.ikape-about-home-content h2{
font-size:32px;
}

.ikape-about-home-content p{
font-size:16px;
}

.ikape-shop-toolbar{
flex-direction:column;
align-items:flex-start;
}

.ikape-footer-top-inner{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.ikape-footer-body{
padding:48px 0 36px;
}

.ikape-footer-grid{
grid-template-columns:1fr;
gap:32px;
}

.ikape-footer-bottom-inner{
flex-direction:column;
align-items:flex-start;
gap:8px;
}
}
/* =========================
PAGINA SOBRE IKAPE
========================= */

.ikape-about-page{
background:#ffffff;
}

/* Hero */
.iap-hero{
position:relative;
min-height:88vh;
display:flex;
align-items:center;
overflow:hidden;
background:#0a0a0a;
}

.iap-hero-bg{
position:absolute;
inset:0;
background-size:cover;
background-position:center;
opacity:0.22;
filter:grayscale(30%);
transform:scale(1.05);
}

.iap-hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,10,10,0.75) 50%, rgba(10,10,10,0.88) 100%);
}

.iap-hero-content{
position:relative;
z-index:2;
padding-top:60px;
padding-bottom:60px;
max-width:780px;
}

.iap-hero-badge{
display:inline-flex;
align-items:center;
gap:8px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.15);
border-radius:999px;
padding:7px 16px;
font-size:13px;
color:rgba(255,255,255,0.75);
letter-spacing:0.5px;
margin-bottom:28px;
}

.iap-hero-dot{
width:7px;
height:7px;
border-radius:50%;
background:#22c55e;
box-shadow:0 0 0 3px rgba(34,197,94,0.25);
animation:ikape-pulse 2s infinite;
flex-shrink:0;
}

.iap-hero-title{
font-size:62px;
line-height:1.06;
font-weight:800;
color:#ffffff;
margin-bottom:22px;
letter-spacing:-1.5px;
}

.iap-hero-title em{
font-style:italic;
font-weight:800;
background:linear-gradient(90deg,#ef4444,#dc2626);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}

.iap-hero-text{
font-size:17px;
color:rgba(255,255,255,0.55);
max-width:560px;
margin-bottom:36px;
line-height:1.75;
}

.iap-hero-actions{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-bottom:52px;
}

.iap-hero-btn-primary{
background:#ffffff;
color:#111111;
border:none;
border-radius:999px;
padding:14px 28px;
font-size:15px;
font-weight:600;
text-decoration:none;
transition:transform .2s, box-shadow .2s;
}

.iap-hero-btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 8px 24px rgba(255,255,255,0.15);
}

.iap-hero-btn-secondary{
background:transparent;
color:rgba(255,255,255,0.75);
border:1px solid rgba(255,255,255,0.25);
border-radius:999px;
padding:14px 28px;
font-size:15px;
font-weight:500;
text-decoration:none;
transition:border-color .2s, color .2s;
}

.iap-hero-btn-secondary:hover{
border-color:rgba(255,255,255,0.6);
color:#ffffff;
}

.iap-hero-stats{
display:flex;
align-items:center;
gap:24px;
}

.iap-hero-stat{
display:flex;
flex-direction:column;
gap:3px;
}

.iap-hero-stat strong{
font-size:20px;
font-weight:700;
color:#ffffff;
line-height:1;
}

.iap-hero-stat span{
font-size:12px;
color:rgba(255,255,255,0.45);
text-transform:uppercase;
letter-spacing:0.8px;
}

.iap-hero-stat-divider{
width:1px;
height:32px;
background:rgba(255,255,255,0.15);
}

/* Brand */
.iap-brand{
padding:96px 0;
background:#ffffff;
}

.iap-brand-inner{
display:grid;
grid-template-columns:1fr 1fr;
gap:64px;
align-items:center;
}

.iap-brand-text h2{
font-size:40px;
line-height:1.12;
color:#111111;
margin-bottom:20px;
}

.iap-brand-text p{
font-size:16px;
color:#4b5563;
line-height:1.8;
margin-bottom:16px;
}

.iap-brand-text p:last-child{
margin-bottom:0;
}

.iap-img-placeholder{
width:100%;
aspect-ratio:4/3;
background:#f4f4f4;
border-radius:28px;
border:1px solid #ebebeb;
display:flex;
align-items:center;
justify-content:center;
color:#9ca3af;
font-size:14px;
}

/* Stats */
.iap-stats{
padding:0 0 80px;
background:#ffffff;
}

.iap-stats-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:2px;
border:1px solid #ebebeb;
border-radius:24px;
overflow:hidden;
}

.iap-stat{
padding:36px 28px;
display:flex;
flex-direction:column;
gap:6px;
border-right:1px solid #ebebeb;
background:#fafafa;
}

.iap-stat:last-child{
border-right:none;
}

.iap-stat-number{
font-size:36px;
font-weight:700;
color:#111111;
line-height:1;
}

.iap-stat-label{
font-size:14px;
color:#6b7280;
}

/* Por qué elegirnos */
.iap-why{
padding:80px 0 96px;
background:#f7f7f7;
}

.iap-why-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:24px;
}

.iap-why-card{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:24px;
padding:32px;
transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.iap-why-card:hover{
transform:translateY(-4px);
box-shadow:0 14px 30px rgba(0,0,0,0.06);
border-color:#dcdcdc;
}

.iap-why-icon{
font-size:28px;
margin-bottom:16px;
line-height:1;
}

.iap-why-card h3{
font-size:22px;
line-height:1.2;
color:#111111;
margin-bottom:12px;
}

.iap-why-card p{
font-size:15px;
color:#4b5563;
line-height:1.7;
}

/* Productos overview */
.iap-products-overview{
padding:96px 0;
background:#ffffff;
}

.iap-products-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:22px;
}

.iap-product-cat{
background:#fafafa;
border:1px solid #ebebeb;
border-radius:20px;
padding:28px 22px;
transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.iap-product-cat:hover{
transform:translateY(-4px);
box-shadow:0 12px 28px rgba(0,0,0,0.06);
border-color:#dcdcdc;
}

.iap-product-cat-icon{
font-size:30px;
margin-bottom:14px;
line-height:1;
}

.iap-product-cat h3{
font-size:19px;
line-height:1.25;
color:#111111;
margin-bottom:10px;
}

.iap-product-cat p{
font-size:14px;
color:#4b5563;
line-height:1.7;
}

/* CTA */
.iap-cta{
padding:80px 0 96px;
background:#111111;
}

.iap-cta-inner{
display:grid;
grid-template-columns:1fr auto;
gap:48px;
align-items:center;
}

.iap-cta-text h2{
font-size:38px;
line-height:1.12;
color:#ffffff;
margin-bottom:12px;
}

.iap-cta-text p{
font-size:16px;
color:rgba(255,255,255,0.65);
}

.iap-cta-actions{
display:flex;
flex-direction:column;
gap:12px;
align-items:flex-end;
}

.iap-cta .ikape-btn{
background:#ffffff;
color:#111111;
white-space:nowrap;
}

.iap-cta .ikape-btn:hover{
background:#f0f0f0;
opacity:1;
}

.iap-btn-outline{
display:inline-block;
border:1px solid rgba(255,255,255,0.3);
color:rgba(255,255,255,0.8);
padding:14px 24px;
border-radius:999px;
font-size:15px;
font-weight:600;
transition:border-color .2s, color .2s;
white-space:nowrap;
}

.iap-btn-outline:hover{
border-color:rgba(255,255,255,0.7);
color:#ffffff;
}

/* Responsive Sobre IKAPE */
@media (max-width:992px){
.iap-brand-inner{
grid-template-columns:1fr;
gap:40px;
}

.iap-stats-grid{
grid-template-columns:repeat(2, 1fr);
}

.iap-stat{
border-right:1px solid #ebebeb;
border-bottom:1px solid #ebebeb;
}

.iap-stat:nth-child(2n){
border-right:none;
}

.iap-stat:nth-child(3),
.iap-stat:nth-child(4){
border-bottom:none;
}

.iap-products-grid{
grid-template-columns:repeat(2, 1fr);
}

.iap-cta-inner{
grid-template-columns:1fr;
gap:28px;
}

.iap-cta-actions{
align-items:flex-start;
flex-direction:row;
}
}

@media (max-width:768px){
.iap-hero{
min-height:auto;
padding:100px 0 64px;
}
.iap-hero-title{
font-size:38px;
letter-spacing:-0.5px;
}
.iap-hero-text{
font-size:16px;
}
.iap-hero-actions{
flex-direction:column;
align-items:flex-start;
}
.iap-hero-stats{
gap:16px;
flex-wrap:wrap;
}

.iap-brand-text h2{
font-size:32px;
}

.iap-why-grid{
grid-template-columns:1fr;
}

.iap-products-grid{
grid-template-columns:1fr;
}

.iap-cta-text h2{
font-size:28px;
}

.iap-cta-actions{
flex-direction:column;
align-items:flex-start;
}

.iap-stat-number{
font-size:28px;
}
}

/* =========================
PAGINA CONTACTO
========================= */

.ikape-contact-page{
background:#ffffff;
}

.icp-hero{
padding:80px 0 64px;
background:#f7f7f7;
border-bottom:1px solid #ebebeb;
}

.icp-kicker{
font-size:13px;
text-transform:uppercase;
letter-spacing:1.5px;
color:#6b7280;
margin-bottom:16px;
}

.icp-hero-title{
font-size:52px;
font-weight:700;
line-height:1.08;
color:#111111;
margin-bottom:16px;
}

.icp-hero-text{
font-size:17px;
color:#4b5563;
max-width:580px;
line-height:1.7;
}

.icp-main{
padding:72px 0 96px;
}

.icp-grid{
display:grid;
grid-template-columns:1fr 1.4fr;
gap:52px;
align-items:start;
}

/* Canales de contacto */
.icp-info{
display:flex;
flex-direction:column;
gap:24px;
}

.icp-info-card{
display:flex;
flex-direction:column;
gap:10px;
}

.icp-channel{
display:grid;
grid-template-columns:48px 1fr auto;
align-items:center;
gap:16px;
padding:16px 18px;
border:1px solid #ebebeb;
border-radius:18px;
background:#ffffff;
transition:border-color .2s, box-shadow .2s, transform .2s;
}

.icp-channel:hover{
border-color:#d0d0d0;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
transform:translateY(-2px);
}

.icp-channel-icon{
width:48px;
height:48px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.icp-channel-icon--whatsapp{
background:#e8faf0;
color:#25d366;
}

.icp-channel-icon--email{
background:#eff6ff;
color:#3b82f6;
}

.icp-channel-icon--instagram{
background:#fdf2f8;
color:#e1306c;
}

.icp-channel-icon--tiktok{
background:#f0f0f0;
color:#111111;
}

.icp-channel-icon--facebook{
background:#eff6ff;
color:#1877f2;
}

.icp-channel-text{
display:flex;
flex-direction:column;
gap:2px;
}

.icp-channel-text strong{
font-size:15px;
color:#111111;
line-height:1.3;
}

.icp-channel-text span{
font-size:14px;
color:#6b7280;
}

.icp-channel-arrow{
font-size:18px;
color:#d1d5db;
transition:color .2s, transform .2s;
}

.icp-channel:hover .icp-channel-arrow{
color:#111111;
transform:translateX(3px);
}

.icp-horario{
background:#f7f7f7;
border-radius:18px;
padding:20px 22px;
}

.icp-horario-title{
font-size:14px;
font-weight:600;
color:#111111;
margin-bottom:6px;
}

.icp-horario p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}

/* Formulario */
.icp-form-card{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:28px;
padding:40px;
box-shadow:0 8px 28px rgba(0,0,0,0.04);
position:sticky;
top:24px;
}

.icp-form-card h2{
font-size:28px;
font-weight:700;
color:#111111;
margin-bottom:8px;
}

.icp-form-card > p{
font-size:15px;
color:#6b7280;
margin-bottom:28px;
}

.icp-form-body .wpcf7-form{
display:flex;
flex-direction:column;
gap:14px;
}

.icp-form-body .wpcf7-form p{
margin:0;
}

.icp-form-body input[type="text"],
.icp-form-body input[type="email"],
.icp-form-body input[type="tel"],
.icp-form-body textarea{
width:100%;
border:1px solid #e0e0e0;
border-radius:14px;
padding:14px 16px;
font-size:15px;
color:#111111;
background:#fafafa;
outline:none;
transition:border-color .2s, box-shadow .2s, background .2s;
font-family:inherit;
}

.icp-form-body input[type="text"]:focus,
.icp-form-body input[type="email"]:focus,
.icp-form-body input[type="tel"]:focus,
.icp-form-body textarea:focus{
border-color:#111111;
background:#ffffff;
box-shadow:0 0 0 3px rgba(0,0,0,0.05);
}

.icp-form-body textarea{
min-height:130px;
resize:vertical;
}

.icp-form-body input[type="submit"],
.icp-form-body .wpcf7-submit{
width:100%;
background:#111111;
color:#ffffff;
border:none;
border-radius:999px;
padding:15px 24px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:background .2s, transform .2s, box-shadow .2s;
box-shadow:0 6px 16px rgba(0,0,0,0.1);
font-family:inherit;
}

.icp-form-body input[type="submit"]:hover,
.icp-form-body .wpcf7-submit:hover{
background:#333333;
transform:translateY(-1px);
box-shadow:0 10px 22px rgba(0,0,0,0.13);
}

.icp-form-body .wpcf7-not-valid-tip{
font-size:12px;
color:#e53e3e;
margin-top:4px;
}

.icp-form-body .wpcf7-response-output{
border-radius:12px;
padding:12px 16px;
font-size:14px;
margin-top:8px;
border:none !important;
}

/* Responsive contacto */
@media (max-width:900px){
.icp-grid{
grid-template-columns:1fr;
gap:36px;
}

.icp-form-card{
position:relative;
top:auto;
}
}

@media (max-width:768px){
.icp-hero-title{
font-size:38px;
}

.icp-form-card{
padding:28px 22px;
}
}

.icp-field-group{
display:flex;
flex-direction:column;
gap:6px;
}

.icp-field-group label{
font-size:14px;
font-weight:600;
color:#111111;
}

/* =========================
PAGE GENERICA (carrito, mi cuenta, etc)
========================= */

.ikape-page-wrap{
padding:56px 0 90px;
background:#ffffff;
min-height:60vh;
}

/* =========================
WOOCOMMERCE — MI CUENTA & CARRITO
========================= */

/* Padding general para páginas WC */
.ikape-wc-page{
padding:72px 0 120px;
background:#ffffff;
min-height:60vh;
}

/* ---- MI CUENTA ---- */
.woocommerce-account .ikape-wc-page .woocommerce{
display:grid;
grid-template-columns:240px 1fr;
gap:36px;
align-items:start;
}

.woocommerce-MyAccount-navigation{
position:sticky;
top:24px;
}

.woocommerce-MyAccount-navigation ul{
list-style:none;
display:flex;
flex-direction:column;
gap:4px;
background:#f7f7f7;
border-radius:24px;
padding:16px;
margin:0;
}

.woocommerce-MyAccount-navigation ul li a{
display:block;
padding:12px 16px;
border-radius:14px;
font-size:15px;
color:#4b5563;
font-weight:500;
transition:background .2s, color .2s;
}

.woocommerce-MyAccount-navigation ul li a:hover{
background:#e8e8e8;
color:#111111;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a{
background:#111111 !important;
color:#ffffff !important;
font-weight:600;
}

.woocommerce-MyAccount-content{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:28px;
padding:40px;
font-size:15px;
color:#4b5563;
line-height:1.8;
min-height:280px;
}

.woocommerce-MyAccount-content p strong{
color:#111111;
}

.woocommerce-MyAccount-content a{
color:#111111;
font-weight:600;
text-decoration:underline;
text-underline-offset:3px;
}

.woocommerce-MyAccount-content a:hover{
opacity:.7;
}

/* ---- CARRITO ---- */
.woocommerce-cart .woocommerce{
max-width:100%;
}

.woocommerce table.shop_table{
border:1px solid #ebebeb;
border-radius:20px;
border-collapse:separate;
border-spacing:0;
overflow:hidden;
width:100%;
font-size:15px;
margin-bottom:0;
}

.woocommerce table.shop_table thead tr th{
background:#f7f7f7;
color:#111111;
font-size:12px;
font-weight:600;
text-transform:uppercase;
letter-spacing:1px;
padding:14px 24px;
border-bottom:1px solid #ebebeb;
}

.woocommerce table.shop_table tbody tr td{
padding:22px 24px;
border-bottom:1px solid #f0f0f0;
vertical-align:middle;
color:#111111;
}

.woocommerce table.shop_table tbody tr:last-child td{
border-bottom:none;
}

.woocommerce table.shop_table .product-thumbnail img{
width:80px;
height:80px;
object-fit:contain;
border-radius:14px;
background:#f7f7f7;
padding:8px;
}

.woocommerce table.shop_table .product-name a{
font-weight:600;
color:#111111;
font-size:15px;
}

.woocommerce table.shop_table .product-name a:hover{
opacity:.7;
}

.woocommerce .quantity input.qty{
width:60px;
border:1px solid #e0e0e0;
border-radius:12px;
padding:10px 12px;
font-size:15px;
text-align:center;
color:#111111;
background:#fafafa;
}

.woocommerce #content table.cart td.actions .coupon .input-text,
.woocommerce table.cart td.actions .coupon .input-text{
border:1px solid #e0e0e0;
border-radius:999px;
padding:10px 18px;
font-size:14px;
outline:none;
background:#fafafa;
}

.woocommerce table.cart td.actions .button,
.woocommerce #content table.cart td.actions .button{
background:#f7f7f7;
color:#111111;
border-radius:999px;
padding:10px 22px;
font-size:14px;
font-weight:600;
border:1px solid #e0e0e0;
transition:background .2s;
}

.woocommerce table.cart td.actions .button:hover{
background:#e8e8e8;
}

/* Totales carrito */
.woocommerce .cart-collaterals{
margin-top:36px;
}

.woocommerce .cart_totals{
float:right;
width:400px;
background:#f7f7f7;
border-radius:28px;
padding:32px;
}

.woocommerce .cart_totals h2{
font-size:20px;
font-weight:700;
margin-bottom:24px;
color:#111111;
}

.woocommerce .cart_totals table{
width:100%;
border:none;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td{
padding:12px 0;
border-bottom:1px solid #e8e8e8;
font-size:15px;
color:#111111;
}

.woocommerce .cart_totals table tr:last-child th,
.woocommerce .cart_totals table tr:last-child td{
border-bottom:none;
font-weight:700;
font-size:18px;
padding-top:16px;
}

.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce a.checkout-button{
display:block;
width:100%;
background:#111111 !important;
color:#ffffff !important;
border-radius:999px !important;
padding:16px 24px !important;
font-size:16px !important;
font-weight:600 !important;
text-align:center;
margin-top:20px;
transition:background .2s, transform .2s, box-shadow .2s !important;
box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

.woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce a.checkout-button:hover{
background:#333333 !important;
transform:translateY(-2px);
box-shadow:0 12px 24px rgba(0,0,0,0.15) !important;
}

/* Botones generales WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
background:#111111 !important;
color:#ffffff !important;
border-radius:999px !important;
padding:12px 24px !important;
font-size:14px !important;
font-weight:600 !important;
transition:background .2s !important;
border:none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
background:#333333 !important;
color:#ffffff !important;
}

/* Mensajes y alertas */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
border-radius:14px !important;
border-top:none !important;
padding:16px 22px !important;
font-size:14px !important;
margin-bottom:28px !important;
}

.woocommerce-message{ background:#e8faf0 !important; color:#166534 !important; }
.woocommerce-info{ background:#eff6ff !important; color:#1e40af !important; }
.woocommerce-error{ background:#fef2f2 !important; color:#991b1b !important; }

/* Responsive */
@media(max-width:900px){
.woocommerce-account .woocommerce{
grid-template-columns:1fr;
}
.woocommerce-MyAccount-navigation{
position:relative;
top:auto;
}
}

@media(max-width:768px){
.woocommerce-account .ikape-wc-page,
.woocommerce-cart .ikape-wc-page{
padding:48px 0 80px;
}
.woocommerce .cart_totals{
float:none;
width:100%;
}
.woocommerce-MyAccount-content{
padding:24px;
}
}

/* =========================
PAGE GENERICA (carrito, mi cuenta, etc)
========================= */

.ikape-page-wrap{
padding:56px 0 90px;
background:#ffffff;
min-height:60vh;
}

/* =========================
WOOCOMMERCE — CARRITO & MI CUENTA
========================= */

/* Contenedor general */
.ikape-page-wrap .woocommerce,
.ikape-page-wrap .woocommerce-page{
width:100%;
}

/* ---- CARRITO ---- */
.woocommerce-cart .ikape-wc-page{
padding:72px 0 120px;
}

.woocommerce-cart .ikape-wc-page .container{
max-width:1100px;
}

/* Título de sección carrito */
.woocommerce-cart .ikape-wc-page::before{
content:'Tu carrito';
display:block;
font-size:40px;
font-weight:700;
color:#111111;
margin-bottom:40px;
padding:0 0 0 0;
}

.woocommerce table.shop_table{
border:1px solid #ebebeb;
border-radius:20px;
border-collapse:separate;
border-spacing:0;
overflow:hidden;
width:100%;
font-size:15px;
}

.woocommerce table.shop_table thead tr th{
background:#f7f7f7;
color:#111111;
font-size:12px;
font-weight:600;
text-transform:uppercase;
letter-spacing:1px;
padding:14px 24px;
border-bottom:1px solid #ebebeb;
}

.woocommerce table.shop_table tbody tr td{
padding:22px 24px;
border-bottom:1px solid #f0f0f0;
vertical-align:middle;
color:#111111;
}

.woocommerce table.shop_table tbody tr:last-child td{
border-bottom:none;
}

.woocommerce table.shop_table .product-thumbnail img{
width:80px;
height:80px;
object-fit:contain;
border-radius:14px;
background:#f7f7f7;
padding:8px;
}

.woocommerce table.shop_table .product-name a{
font-weight:600;
color:#111111;
font-size:15px;
}

.woocommerce table.shop_table .product-name a:hover{
opacity:.7;
}

.woocommerce .quantity input.qty{
width:60px;
border:1px solid #e0e0e0;
border-radius:12px;
padding:10px 12px;
font-size:15px;
text-align:center;
color:#111111;
background:#fafafa;
}

.woocommerce #content table.cart td.actions .coupon .input-text,
.woocommerce table.cart td.actions .coupon .input-text{
border:1px solid #e0e0e0;
border-radius:999px;
padding:10px 18px;
font-size:14px;
outline:none;
background:#fafafa;
}

.woocommerce table.cart td.actions .button,
.woocommerce #content table.cart td.actions .button{
background:#f7f7f7;
color:#111111;
border-radius:999px;
padding:10px 22px;
font-size:14px;
font-weight:600;
border:1px solid #e0e0e0;
transition:background .2s;
}

.woocommerce table.cart td.actions .button:hover{
background:#ebebeb;
}

/* Totales del carrito */
.woocommerce .cart-collaterals{
margin-top:40px;
}

.woocommerce .cart_totals{
float:right;
width:400px;
background:#f7f7f7;
border-radius:28px;
padding:32px;
}

.woocommerce .cart_totals h2{
font-size:20px;
font-weight:700;
margin-bottom:24px;
color:#111111;
}

.woocommerce .cart_totals table{
width:100%;
border:none;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td{
padding:12px 0;
border-bottom:1px solid #ebebeb;
font-size:15px;
color:#111111;
}

.woocommerce .cart_totals table tr:last-child th,
.woocommerce .cart_totals table tr:last-child td{
border-bottom:none;
font-weight:700;
font-size:18px;
padding-top:16px;
}

.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce a.checkout-button{
display:block;
width:100%;
background:#111111 !important;
color:#ffffff !important;
border-radius:999px !important;
padding:16px 24px !important;
font-size:16px !important;
font-weight:600 !important;
text-align:center;
margin-top:20px;
transition:background .2s, transform .2s, box-shadow .2s !important;
box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

.woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce a.checkout-button:hover{
background:#333333 !important;
transform:translateY(-2px);
box-shadow:0 12px 24px rgba(0,0,0,0.15) !important;
}

/* ---- MI CUENTA ---- */
.woocommerce-account .ikape-wc-page{
padding:72px 0 120px;
background:#ffffff;
}

.woocommerce-account .ikape-wc-page .container{
max-width:1100px;
}

/* Header de mi cuenta */
.woocommerce-account .ikape-wc-page .container > .woocommerce{
display:grid;
grid-template-columns:260px 1fr;
gap:40px;
align-items:start;
}

.woocommerce-MyAccount-navigation{
width:auto;
float:none;
position:sticky;
top:24px;
}

.woocommerce-MyAccount-navigation ul{
display:flex;
flex-direction:column;
gap:4px;
background:#f7f7f7;
border-radius:24px;
padding:20px;
list-style:none;
}

.woocommerce-MyAccount-navigation ul li a{
display:block;
padding:12px 16px;
border-radius:14px;
font-size:15px;
color:#4b5563;
transition:background .2s, color .2s;
font-weight:500;
}

.woocommerce-MyAccount-navigation ul li a:hover{
background:#ebebeb;
color:#111111;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a{
background:#111111;
color:#ffffff;
font-weight:600;
}

.woocommerce-MyAccount-content{
float:none;
width:auto;
font-size:15px;
color:#4b5563;
line-height:1.8;
background:#ffffff;
border:1px solid #ebebeb;
border-radius:28px;
padding:40px;
min-height:300px;
}

.woocommerce-MyAccount-content p{
margin-bottom:16px;
}

.woocommerce-MyAccount-content p strong{
color:#111111;
}

.woocommerce-MyAccount-content a{
color:#111111;
font-weight:600;
text-decoration:underline;
text-underline-offset:3px;
}

.woocommerce-MyAccount-content a:hover{
opacity:.7;
}

/* Botones generales WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
background:#111111 !important;
color:#ffffff !important;
border-radius:999px !important;
padding:12px 24px !important;
font-size:14px !important;
font-weight:600 !important;
transition:background .2s !important;
border:none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
background:#333333 !important;
color:#ffffff !important;
}

/* Mensajes y alertas */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
border-radius:14px !important;
border-top:none !important;
padding:16px 22px !important;
font-size:14px !important;
margin-bottom:28px !important;
}

.woocommerce-message{
background:#e8faf0 !important;
color:#166534 !important;
}

.woocommerce-info{
background:#eff6ff !important;
color:#1e40af !important;
}

.woocommerce-error{
background:#fef2f2 !important;
color:#991b1b !important;
}

/* Responsive */
@media(max-width:900px){
.woocommerce-account .ikape-wc-page .container > .woocommerce{
grid-template-columns:1fr;
}

.woocommerce-MyAccount-navigation{
position:relative;
top:auto;
}
}

@media(max-width:768px){
.woocommerce-cart .ikape-wc-page,
.woocommerce-account .ikape-wc-page{
padding:48px 0 80px;
}

.woocommerce .cart_totals{
float:none;
width:100%;
}

.woocommerce-MyAccount-content{
padding:24px;
}
}

/* =========================
CHECKOUT
========================= */

.woocommerce-checkout .ikape-page-wrap{
padding:72px 0 120px;
}

/* Layout principal: formulario izquierda, resumen derecha */
.woocommerce-checkout form.woocommerce-checkout{
display:grid;
grid-template-columns:1fr 620px;
grid-template-areas:
    "billing order"
    "additional order"
    "payment order";
gap:0 48px;
align-items:start;
}

.woocommerce-checkout #customer_details{
grid-area:billing;
}

.woocommerce-checkout .woocommerce-additional-fields{
grid-area:additional;
}

.woocommerce-checkout #order_review_heading{
display:none;
}

.woocommerce-checkout #order_review{
grid-area:order;
background:#f7f7f7;
border-radius:28px;
padding:32px;
position:sticky;
top:24px;
}

.woocommerce-checkout #payment{
grid-area:payment;
}

/* Columnas del billing side by side */
.woocommerce-checkout .col2-set{
display:block;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2{
width:100%;
float:none;
}

/* Títulos */
.woocommerce-checkout h3{
font-size:20px;
font-weight:700;
color:#111111;
margin-bottom:24px;
padding-bottom:14px;
border-bottom:1px solid #ebebeb;
}

/* Labels */
.woocommerce-checkout .form-row label{
display:block;
font-size:13px;
font-weight:600;
color:#111111;
margin-bottom:6px;
}

/* Campos */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea{
width:100%;
border:1px solid #e0e0e0;
border-radius:14px;
padding:13px 16px;
font-size:15px;
color:#111111;
background:#fafafa;
outline:none;
transition:border-color .2s, box-shadow .2s, background .2s;
font-family:inherit;
-webkit-appearance:none;
appearance:none;
box-sizing:border-box;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus{
border-color:#111111;
background:#ffffff;
box-shadow:0 0 0 3px rgba(0,0,0,0.05);
}

/* Nombre y apellido lado a lado */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last{
width:calc(50% - 8px);
display:inline-block;
vertical-align:top;
float:none;
}

.woocommerce-checkout .form-row-first{
margin-right:16px;
}

/* Resumen del pedido */
.woocommerce-checkout #order_review h3{
font-size:18px;
margin-bottom:20px;
}

.woocommerce-checkout table.shop_table{
width:100%;
border-collapse:collapse;
margin-bottom:16px;
}

.woocommerce-checkout table.shop_table thead th{
font-size:12px;
font-weight:600;
text-transform:uppercase;
letter-spacing:1px;
color:#6b7280;
padding:0 0 12px 0;
border-bottom:1px solid #e0e0e0;
}

.woocommerce-checkout table.shop_table tbody td,
.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td{
padding:12px 0;
border-bottom:1px solid #ebebeb;
font-size:14px;
color:#111111;
vertical-align:middle;
}

.woocommerce-checkout table.shop_table tfoot .order-total th,
.woocommerce-checkout table.shop_table tfoot .order-total td{
font-size:18px;
font-weight:700;
border-bottom:none;
padding-top:16px;
border-top:2px solid #e0e0e0;
}

/* Pago */
#payment{
background:#ffffff;
border:1px solid #ebebeb;
border-radius:20px;
padding:24px;
margin-top:24px;
}

#payment ul.payment_methods{
list-style:none;
padding:0;
margin:0 0 20px 0;
display:flex;
flex-direction:column;
gap:10px;
}

#payment ul.payment_methods li{
border:1px solid #e0e0e0;
border-radius:14px;
padding:14px 18px;
transition:border-color .2s;
}

#payment ul.payment_methods li label{
font-size:15px;
font-weight:600;
color:#111111;
cursor:pointer;
display:flex;
align-items:center;
gap:10px;
}

#payment ul.payment_methods li img{
height:24px;
width:auto;
margin-left:auto;
}

#payment .payment_box{
background:#f7f7f7;
border-radius:10px;
padding:14px;
margin-top:12px;
font-size:14px;
color:#4b5563;
}

#payment #place_order{
width:100%;
background:#111111;
color:#ffffff;
border:none;
border-radius:999px;
padding:16px 24px;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:background .2s, transform .2s, box-shadow .2s;
box-shadow:0 6px 16px rgba(0,0,0,0.12);
font-family:inherit;
margin-top:16px;
}

#payment #place_order:hover{
background:#333333;
transform:translateY(-2px);
box-shadow:0 12px 24px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:960px){
.woocommerce-checkout form.woocommerce-checkout{
grid-template-columns:1fr;
grid-template-areas:
    "billing"
    "additional"
    "order"
    "payment";
gap:0;
}

.woocommerce-checkout #order_review{
position:relative;
top:auto;
grid-row:auto;
margin-bottom:32px;
}

.woocommerce-checkout #payment{
grid-row:auto;
}
}

@media(max-width:768px){
.woocommerce-checkout .ikape-page-wrap{
padding:48px 0 80px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last{
width:100%;
display:block;
margin-right:0;
}
}

/* Mercado Pago widget */
#payment .payment_box iframe,
#payment .payment_box > div{
width:100% !important;
max-width:100% !important;
}

.woocommerce-checkout #order_review{
min-width:0;
overflow:hidden;
}

@media(max-width:480px){
.ikape-benefits-grid{
grid-template-columns:1fr !important;
}
.ikape-products-grid ul.products,
.ikape-products-grid ul.products.columns-1,
.ikape-products-grid ul.products.columns-2,
.ikape-products-grid ul.products.columns-3,
.ikape-products-grid ul.products.columns-4,
.ikape-products-grid ul.products.columns-5{
display:grid !important;
grid-template-columns:1fr !important;
flex-wrap:wrap !important;
overflow:visible !important;
}
.ikape-products-grid ul.products li.product{
width:100% !important;
flex:none !important;
}
}