body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    padding: 0;
    min-height: 100%;
    overflow-y: auto;
}

main {
    padding-bottom: 0;
}


header {
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer {
    background: #111;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 0 !important;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 30px;
}

.footer-box h4 {
    margin-bottom: 10px;
}

.footer-box p {
    color: #ccc;
    font-size: 14px;
}

.footer-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 14px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
}

.whatsapp {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp:hover {
    background: #1ebe5d;
}


.tiktok {
    background: #000;
    border: 1px solid #fff;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    font-size: 13px;
    color: #aaa;
}


nav {
    text-align: center;
    padding: 15px;
    background: #fff;
}

nav button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background: #222;
    color: #fff;
    border-radius: 5px;
}

nav button:hover {
    background: #444;
}

.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.product h3 {
    margin: 10px 0;
}

.product p {
    color: #27ae60;
    font-weight: bold;
}


.product {
    position: relative;
    overflow: hidden;
}

/* Gizli bilgi kutusu */
.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 12px;
    font-size: 14px;
    transform: translateY(100%);
    transition: 0.3s ease;
    text-align: left;
}

/* Hover olunca çıksın */
.product:hover .product-info {
    transform: translateY(0);
}
.product-info {
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.6);
}
