* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Admin styles */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5530;
    display: block;
    margin-top: 0.5rem;
}

.canoe-management {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filters select, .filters input {
    padding: 0.8rem;
    border: 2px solid #e1f5fe;
    border-radius: 10px;
    font-size: 1rem;
}

.admin-canoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.admin-canoe-card {
    border: 2px solid #e1f5fe;
    border-radius: 15px;
    padding: 1rem;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-canoe-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.canoe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.canoe-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit, .btn-delete {
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-edit {
    background: #4fc3f7;
    color: white;
}

.btn-edit:hover {
    background: #29b6f6;
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover {
    background: #d32f2f;
}

.canoe-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c5530;
}

.form-group input, .form-group select {
    padding: 0.8rem;
    border: 2px solid #e1f5fe;
    border-radius: 10px;
    font-size: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }
    
    /* Admin responsive */
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .admin-canoes-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1rem;
    }
    
    .canoe-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Main app responsive */
    .header h1 {
        font-size: 2rem;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .grid-canoes {
        grid-template-columns: 1fr;
    }
    
    .canoe-card {
        margin-bottom: 1rem;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .activity-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .login-form {
        margin: 1rem auto;
        padding: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 0.8rem;
    }
    
    .form-group input, .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .admin-canoe-card {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffd3b6 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Bubbles animation */
.bubble-container {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 50%;
    animation-duration: 25s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 90%;
    animation-duration: 22s;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-500px) rotate(180deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1200px) rotate(360deg);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Kawaii Header */
.kawaii-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    background: white;
    border-radius: 30px 30px 100px 100px;
    padding: 40px 20px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, #ffd3b6, #fed6e3, #a8edea);
    border-radius: 30px 30px 0 0;
}

.header-content h1 {
    font-size: 2.5em;
    color: #4a5568;
    font-weight: 700;
    margin: 0 15px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-emoji {
    font-size: 2.5em;
    animation: wiggle 2s ease-in-out infinite;
}

.logo-emoji:first-child {
    animation-delay: 0s;
}

.logo-emoji:last-child {
    animation-delay: 0.5s;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.subtitle {
    color: #718096;
    font-size: 1.1em;
    font-weight: 500;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Kawaii Card */
.kawaii-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.kawaii-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px dashed rgba(168, 237, 234, 0.5);
}

.card-icon {
    font-size: 2em;
    margin-right: 15px;
}

.card-header h2 {
    color: #4a5568;
    font-size: 1.6em;
    font-weight: 700;
}

/* Form Styles */
.form-section {
    margin-bottom: 25px;
}

.section-title {
    color: #718096;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.label-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Kawaii Select */
.kawaii-select {
    width: 100%;
    padding: 12px 15px;
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    font-size: 0.95em;
    font-weight: 500;
    color: #4a5568;
    background: #f7fafc;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.kawaii-select:hover {
    border-color: #a8edea;
    background: white;
}

.kawaii-select:focus {
    outline: none;
    border-color: #fed6e3;
    background: white;
    box-shadow: 0 0 0 3px rgba(254, 214, 227, 0.2);
}

/* Slider Styles */
.slider-group {
    background: #f7fafc;
    border-radius: 20px;
    padding: 20px;
}

.slider-item {
    margin-bottom: 20px;
}

.slider-item:last-child {
    margin-bottom: 0;
}

.slider-item label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #4a5568;
    font-weight: 600;
}

.slider-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kawaii-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #fed6e3 0%, #a8edea 100%);
    outline: none;
}

.kawaii-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
    border: 3px solid #fed6e3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kawaii-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    border-color: #a8edea;
}

.slider-value {
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-display {
    font-weight: 700;
    color: #4a5568;
}

/* Kawaii Button */
.kawaii-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fed6e3 0%, #a8edea 100%);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-family: 'Quicksand', sans-serif;
}

.kawaii-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 214, 227, 0.4);
}

.kawaii-button:active {
    transform: translateY(-1px);
}

.button-icon {
    font-size: 1.2em;
}

/* Results Section */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-state p {
    color: #718096;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Canoe Card - Style inspiré du screenshot */
.canoe-recommendation {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.canoe-recommendation:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Header avec dégradé bleu-vert comme sur le screenshot */
.canoe-header {
    background: linear-gradient(135deg, #4285f4 0%, #00bcd4 100%);
    color: white;
    padding: 20px;
    position: relative;
}

.canoe-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.canoe-title-section {
    flex: 1;
}

.canoe-name {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    display: flex;
    align-items: center;
}

.canoe-emoji {
    margin-right: 10px;
    font-size: 1.2em;
}

.canoe-subtitle {
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 8px;
}

.canoe-price {
    font-size: 1.1em;
    font-weight: 600;
}

.compatibility-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    min-width: 80px;
}

.compatibility-percentage {
    font-size: 1.3em;
    font-weight: 700;
    display: block;
}

.compatibility-text {
    font-size: 0.8em;
    opacity: 0.9;
}

/* Badge de recommandation */
.recommendation-badge {
    position: absolute;
    top: -3px;
    left: 20px;
    background: #ffc107;
    color: #333;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 0.8em;
    font-weight: 600;
}

/* Corps de la carte */
.canoe-body {
    padding: 20px;
}

.points-forts {
    margin-bottom: 20px;
}

.points-forts h4 {
    color: #333;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Étoiles pour les caractéristiques */
.characteristics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.characteristic {
    text-align: left;
}

.characteristic h5 {
    color: #333;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.1em;
    color: #ddd;
    transition: color 0.2s ease;
}

.star.filled {
    color: #ffc107;
}

.star.half-filled {
    color: #ffc107;
    position: relative;
}

.star.half-filled::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ddd;
}

/* Section "Idéal pour" */
.ideal-for {
    margin-bottom: 20px;
}

.ideal-for h4 {
    color: #333;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.activity-tag {
    display: flex;
    align-items: center;
    background: #e8f5e8;
    color: #4caf50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.activity-tag.beginner {
    background: #e3f2fd;
    color: #2196f3;
}

.activity-tag.precision {
    background: #fff3e0;
    color: #ff9800;
}

.activity-icon {
    margin-right: 6px;
    font-size: 1.1em;
}

/* Bouton Canoë Diffusion */
.canoe-diffusion-btn {
    width: 100%;
    background: linear-gradient(135deg, #4285f4 0%, #00bcd4 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.canoe-diffusion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    color: white;
    text-decoration: none;
}

.btn-icon {
    font-size: 1.1em;
}

.canoe-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.spec-label {
    color: #718096;
    font-size: 0.9em;
    font-weight: 500;
}

.spec-value {
    color: #2d3748;
    font-weight: 700;
    font-size: 0.9em;
}

/* Characteristics bars */
.canoe-chars {
    margin-top: 15px;
}

.char-item {
    margin-bottom: 12px;
}

.char-label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #4a5568;
    font-size: 0.9em;
    font-weight: 600;
}

.char-icon {
    margin-right: 8px;
}

.char-bar {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.char-fill {
    height: 100%;
    background: linear-gradient(90deg, #fed6e3, #a8edea);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
}

.char-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* All Canoes Section */
.filter-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.search-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.kawaii-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    font-size: 0.95em;
    font-weight: 500;
    color: #4a5568;
    background: #f7fafc;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.kawaii-input:hover {
    border-color: #a8edea;
    background: white;
}

.kawaii-input:focus {
    outline: none;
    border-color: #fed6e3;
    background: white;
    box-shadow: 0 0 0 3px rgba(254, 214, 227, 0.2);
}

/* Canoes Grid - Version améliorée */
.canoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.canoe-grid-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.canoe-grid-card:hover {
    transform: translateY(-8px);
    border-color: #4285f4;
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.15);
}

/* Header de la carte - style similaire au screenshot */
.grid-canoe-header {
    background: linear-gradient(135deg, #4285f4 0%, #00bcd4 100%);
    color: white;
    padding: 20px;
    text-align: left;
}

.grid-canoe-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.grid-canoe-name-section {
    flex: 1;
}

.grid-canoe-emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.grid-canoe-name {
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.grid-canoe-subtitle {
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 8px;
}

.grid-canoe-length {
    font-size: 0.85em;
    opacity: 0.8;
}

.grid-compatibility {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 70px;
}

.grid-compatibility-score {
    font-size: 1.1em;
    font-weight: 700;
    display: block;
}

.grid-compatibility-text {
    font-size: 0.7em;
    opacity: 0.9;
}

/* Corps de la carte du catalogue */
.grid-canoe-body {
    padding: 20px;
}

.grid-canoe-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 15px;
}

.grid-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.grid-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.85em;
}

.grid-spec-label {
    color: #666;
    font-weight: 500;
}

.grid-spec-value {
    color: #2d3748;
    font-weight: 700;
}

.grid-characteristics {
    margin-bottom: 15px;
}

.grid-chars-title {
    color: #333;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 10px;
}

.grid-chars-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid-char-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
}

.grid-char-label {
    color: #666;
}

.grid-char-stars {
    display: flex;
    gap: 1px;
}

.grid-char-stars .star {
    font-size: 0.9em;
}

.grid-tags {
    margin-bottom: 15px;
}

.grid-tags-title {
    color: #333;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 8px;
}

.grid-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.grid-tag {
    background: #e8f5e8;
    color: #4caf50;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75em;
    font-weight: 600;
}

.grid-canoe-link {
    display: block;
    background: linear-gradient(135deg, #4285f4 0%, #00bcd4 100%);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.grid-canoe-link:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Footer */
.kawaii-footer {
    text-align: center;
    padding: 40px 20px 20px;
    color: #718096;
    font-weight: 600;
    margin-top: 60px;
}

.wave-bottom {
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23fed6e3" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>') no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kawaii-header h1 {
        font-size: 2em;
    }
    
    .logo-emoji {
        font-size: 2em;
    }
    
    .canoe-specs {
        grid-template-columns: 1fr;
    }
    
    .canoes-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
    }
}
/* Prix dans la grille */
.grid-canoe-price {
    color: #4a90e2;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    display: inline-block;
}

.canoe-price {
    color: #4a90e2;
    font-weight: 500;
    font-size: 14px;
    margin-top: 4px;
}
