/* Estilo Claro, Suave y Limpio (Premium) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body, h1, h2, h3, h4, p, a, span, div {
    font-family: 'Outfit', sans-serif !important;
}

body {
    background-color: #fcfcfd;
    color: #333;
}

/* Header & Typography */
#header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#header h1 {
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

#header p {
    color: #667;
    font-size: 1.1em;
    font-weight: 300;
}

/* Category Filter Buttons */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-filters a {
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    background-color: #ffffff;
    color: #555;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eee;
}

.category-filters a:hover {
    background-color: #f9f9fa;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    color: #111;
}

.category-filters a.active {
    background-color: #ff7e67;
    color: #fff;
    border-color: #ff7e67;
    box-shadow: 0 8px 20px rgba(255, 126, 103, 0.3);
}

/* Product Cards (Tiles) */
.tiles article {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
}

.tiles article:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tiles article .image {
    border-radius: 20px;
}

.tiles article .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tiles article:hover .image img {
    transform: scale(1.05);
}

/* Overlay & Text on Product Cards */
.tiles article > a {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #333;
    text-decoration: none;
}

.tiles article > a h2 {
    color: #222;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: none;
}

.tiles article > a .content p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tiles article:hover > a .content p {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Toggle Button */
a[href="#menu"] {
    color: #ff7e67 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

a[href="#menu"]:hover {
    color: #ff5c3e !important;
}

/* Sidebar Menu */
#menu {
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.05);
}

#menu h2 {
    color: #333;
    font-weight: 600;
    border-bottom-color: #eee;
}

#menu ul li a, #menu > ul > li > a {
    color: #555 !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

#menu ul li a:hover {
    color: #ff7e67;
    padding-left: 10px;
}

/* Badge for category */
.cat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 10;
}
