body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.main-bg {
    background-image: url('enter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#rucci {
    color: white;
    font-size: 5rem;
    margin: 0;
    -webkit-text-stroke: 2px black;
    text-stroke: 2px black;
    cursor: pointer;
    text-align: center;
}

.description {
    color: white;
    font-size: 1.2rem;
    margin: 20px auto;
    text-align: center;
    max-width: 400px;
    background: rgba(0,0,0,0.3);
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
}

.description h2 {
    color: white;
    margin: 0 0 10px 0;
}

.description p {
    color: white;
    margin: 5px 0;
}

.enter-bg {
    background-image: url('enter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    height: 100vh;
    margin: 0;
}

.product-card {
    background: white;
    width: 220px;
    height: 280px;
    cursor: pointer;
    border: 3px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.product-image {
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid red;
}

.product-info {
    padding: 10px;
    text-align: center;
    color: black;
    font-weight: bold;
}

.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.admin-link:hover {
    background: rgba(0,0,0,0.9);
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.8);
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid black;
    transition: background 0.3s ease;
    text-decoration: none;
}

.back-button:hover {
    background: rgba(255,255,255,1);
}

.back-button-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.8);
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid black;
    transition: background 0.3s ease;
    text-decoration: none;
}

.back-button-bottom:hover {
    background: rgba(255,255,255,1);
}

.detail-view {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: white;
    padding: 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    z-index: 1000;
    width: 400px;
    overflow-y: auto;
}

.gallery {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.nav-btn {
    padding: 15px 40px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #555;
}

.products-table {
    background: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 1200px;
}

.products-table table {
    width: 100%;
    border-collapse: collapse;
}

.products-table th, .products-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.products-table th {
    background-color: #333;
    color: white;
}

.products-table tr:hover {
    background-color: #f5f5f5;
}
