* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
    background-color: #fcfcf9;
    color: #13343b;
    line-height: 1.5;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    margin-bottom: 40px;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #13343b;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #626c71;
    font-weight: 400;
}

/* Main */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.cake-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 
                0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(94, 82, 64, 0.08);
    position: relative;
}

.cake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 
                0 4px 8px rgba(0, 0, 0, 0.06);
}

/* Image */
.cake-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #f8f9fa;
}

.cake-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.cake-card:hover .cake-image {
    transform: scale(1.08);
}

/* Overlay Buttons */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, 
                                          rgba(0, 0, 0, 0.4) 50%, 
                                          transparent 100%);
    padding: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cake-card:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: #13343b;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    user-select: none;
}

.btn-action:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-download {
    background: #672b83;
    color: #ffffff;
}

.btn-download:hover {
    background: #1d7480;
}

.btn-share {
    background: rgba(168, 75, 47, 0.95);
    color: #ffffff;
}

.btn-share:hover {
    background: #944329;
}

/* Info Text */
.cake-info {
    padding: 20px;
}

.cake-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #13343b;
    margin-bottom: 8px;
}

.cake-description {
    font-size: 0.95rem;
    color: #626c71;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 60px 0;
}

.btn-load-more {
    padding: 14px 32px;
    background: #672b83;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(33, 128, 141, 0.3);
}

.btn-load-more:hover {
    background: #1d7480;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33, 128, 141, 0.4);
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .header-title {
        font-size: 2rem;
    }
    .header-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .header-title {
        font-size: 1.75rem;
    }
    .btn-action {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    .btn-text {
        display: none;
    }
}
.hidden {
    display: none;
}
