*{
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Assuming you want this as the global background */
    margin: 0;
    padding: 0;
    color: #333;
}

main{
    display: grid;
    grid-template-columns: repeat(6,1fr);

}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.title {
    margin-bottom: 20px;
    font-size: 2em;
}
#searchInput {
    padding: 10px;
    width: 300px;
    margin-top: 20px;
    font-size: 16px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.col-2 {
    grid-column: span 2;
}

.product {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    margin-top: 5rem;
    

}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.btn-buy, .btn-quality {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #333;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-quality {
    background-color: #555;
}

.btn-buy:hover, .btn-quality:hover {
    opacity: 0.9;
}

nav button {
    padding: 10px;
    margin: 5px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

nav button:hover {
    background-color: #555;
}
.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-icon {
    width: 400px; /* Adjust size as needed */
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.9);
}
.social-icon {
    transition: transform 0.3s ease;
}

/* Specific styles for Snapchat icon */
.snapchat-icon {
    width: 500px; /* Set your desired size */
    height: 500px; /* Maintain aspect ratio */
}

/* Specific styles for Instagram icon */
.instagram-icon {
    width: 500px; /* Set your desired size */
    height: 500px; /* Maintain aspect ratio */
}

.social-icon:hover {
    transform: scale(1.5); /* Slightly enlarge icons on hover */
    cursor: pointer;
}

/* Continue with the rest of your styles */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
}

.home-button a {
    text-decoration: none;
    color: #333;
    background-color: #a2a89d;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.home-button a:hover {
    background-color: #535353; /* Slightly darker on hover */
}

#sbody {
    background-color: #ffffff;
}