body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

/* Hero Banner Styling */
.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the full hero area */
}

.icon-size {
    width: 18px;  
    height: 18px; 
}


.hero-content {
    position: absolute;
    text-align: center;
    color: white;
    max-width: 90%;
    padding: 20px;
    z-index: 2; /* Keeps content above the image */
}

/* Button Styling */
.hero-btn {
    font-size: 1.5rem;
    padding: 12px 25px;
    margin-top: 20px;
    text-transform: uppercase;
}

/* Responsive Hero Title & Text */
.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-text {
    font-size: 1.25rem;
}

.mini-hero-tab .container {
    max-width: 400px; /* Ensures it doesn't stretch across the screen */
}

.mini-hero-tab a {
    text-align: center;
    font-size: 14px; /* Adjust font size */
}

.icon-size {
    width: 28px;  /* Adjust icon size */
    height: 28px;
}

.mini-hero-tab .container {
    display: flex;
    justify-content: center; /* Center items */
    gap: 70px; /* Adjust this to increase/decrease spacing */
    max-width: 600px; /* Adjust to control total width */
}

.mini-hero-tab a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    margin: 0 20px; /* Adjust margin to increase/decrease spacing */
}



/* Centered container for product details */
.product-container {
    text-align: center;
    max-width: 400px; /* Adjust width */
    margin: 0 auto; /* Centers the container */
}

/* Image styling */
#product-image {
    max-width: 300px; /* Adjust image size */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Grid layout for products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Product image styling */
.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border-radius: 10px;
}

.product p {
    color: #333; /* Softer black for a modern feel */
    font-family: 'Poppins', sans-serif; /* Optional: Sleek font */
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.product p:hover {
    color: #007bff; /* Subtle color change on hover */
}

.product-name {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333; /* You can also change the color */
}



/* Button styling */
button {
    display: block;
    font-size: 18px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px auto;
}

button:hover {
    background-color: #333;
}

.cart-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    text-align: center;
    border-radius: 5px;
}

.cart-item img {
    border-radius: 5px;
    margin-bottom: 10px;
}

button {
    display: block;
    font-size: 18px;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px auto;
}

button:hover {
    background-color: #333;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    min-height: 100vh; /* Full height to center vertically */
    text-align: center; /* Center text */
}

