/* Bento & Instagram Style Redesign */
:root { 
    --primary-blue: #00AEEF; 
    --vibrant-orange: #FF8C00; 
    --accent-black: #1A1A1A; 
    --deep-dark: #0F172A; 
    --bg-color: #FAFAFA;
    --text-color: #262626; /* Instagram dark gray */
    --border-color: #EFEFEF; /* Instagram subtle border */
    --transition: all 0.3s ease;
    --bento-radius: 24px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .h-outfit {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* Navbar Minimalista */
.navbar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent-black) !important;
    letter-spacing: -0.5px;
}

/* Profile Header (Hero Alternative) */
.profile-header {
    background: #FFFFFF;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px var(--border-color);
    margin-bottom: 20px;
}

.profile-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile-bio {
    font-size: 0.95rem;
    color: #737373; /* Instagram subtitle color */
    max-width: 500px;
    margin: 0 auto 20px auto;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.85rem;
    color: #737373;
}

.profile-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 24px;
    font-size: 0.9rem;
}

/* Bento Grid System */
.bento-container {
    padding: 40px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.bento-card {
    background: #FFFFFF;
    border-radius: var(--bento-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.bento-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #FAFAFA;
}

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

.bento-card:hover .bento-img-wrapper img {
    transform: scale(1.05);
}

.bento-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--accent-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bento-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bento-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.bento-desc {
    font-size: 0.85rem;
    color: #737373;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-price-box {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-bottom: 15px;
}

.price-usd {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-color);
}

.price-bs {
    font-size: 0.85rem;
    color: #737373;
}

.btn-bento-action {
    background: var(--text-color);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-bento-action:hover {
    background: #404040;
    color: #FFFFFF;
}

.btn-bento-secondary {
    background: #EFEFEF;
    color: var(--text-color);
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 10px;
}

.btn-bento-secondary:hover {
    background: #DBDBDB;
}

/* Footer Minimalista */
footer {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

footer p {
    color: #737373;
    font-size: 0.85rem;
    margin: 0;
}

/* Login Button Minimal */
.btn-login-outline {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-login-outline:hover {
    background: #FAFAFA;
}

/* Modal UI */
.modal-content {
    border-radius: var(--bento-radius);
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.form-control-organic {
    border-radius: 12px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    font-size: 1rem;
    box-shadow: none;
}
.form-control-organic:focus {
    background-color: #FFFFFF;
    border-color: var(--text-color);
    box-shadow: 0 0 0 2px rgba(38,38,38,0.1);
}
.btn-login-massive {
    border-radius: 12px;
    background: var(--text-color);
    color: white;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
}
.btn-login-massive:hover {
    background: #404040;
}
