/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light grey background */
    color: #333; /* Dark grey text */
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.button {
    display: inline-block;
    background-color: #a80303; /* Primary red */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background-color: #8c0202; /* Darker red on hover */
}

/* Header Styles */
header {
    background-color: #fff; /* White header background */
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 70px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: #a80303; /* Primary red for active/hover */
}

/* Hero Section / Image Slider Styles */
.hero {
    padding-top: 85px; /* Adjust for sticky header */
    overflow: hidden;
    background-color: #fff; /* Light background for contrast */
    padding-bottom: 30px;
}

.slider-container {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}

.slide {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: .4 }
    to { opacity: 1 }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.6);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.text {
    color: white;
    font-size: 1.2em;
    padding: 15px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Featured Products */
.featured-products {
    padding: 40px 0;
    background-color: #f4f4f4; /* Slightly darker background */
    text-align: center;
}

.featured-products h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
}

.featured-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.featured-products .product-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.featured-products .product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.featured-products .product-item a {
    text-decoration: none;
    color: inherit;
}

.featured-products .product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.featured-products .product-item h3 {
    color: #555;
    margin-top: 0;
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* Product Categories */
.product-categories {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.product-categories h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
}

.product-categories .category-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
    padding: 20px;
    max-width: 1000px;
}

.product-categories .category-list li a {
    display: block;
    text-decoration: none;
    color: #555;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-categories .category-list li a:hover {
    background-color: #eee;
    transform: translateY(-3px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-categories .category-list li a img {
    max-width: 70px;
    height: auto;
    margin-bottom: 10px;
}

/* Product Detail */
.product-detail {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.product-detail .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-detail .product-image {
    flex: 1;
}

.product-detail .product-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.product-detail .product-info {
    flex: 1;
}

.product-detail .product-info h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.product-detail .product-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.product-detail .product-info ul {
    list-style: disc;
    padding-left: 25px;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.product-detail .product-info li {
    margin-bottom: 8px;
}

/* About Us Content */
.about-us-content {
    padding: 40px 0;
    background-color: #f4f4f4;
    padding: 30px;
}

.about-us-content h2,
.about-us-content h3 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
}

.about-us-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Packaging Content */
.packaging-content {
    padding: 40px 0;
    background-color: #fff;
    padding: 30px;
}

.packaging-content h2 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
}

.packaging-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Contact Us Content */
.contact-us-content {
    padding: 40px 0;
    background-color: #f4f4f4;
    padding: 30px;
}

.contact-us-content h2 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
}

.contact-us-content .contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-us-content .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 1.1em;
}

.contact-us-content .contact-form input[type="text"],
.contact-us-content .contact-form input[type="email"],
.contact-us-content .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.contact-us-content .contact-form textarea {
    min-height: 120px;
}

.contact-us-content .contact-form button[type="submit"] {
    background-color: #a80303; /* Primary red */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.contact-us-content .contact-form button[type="submit"]:hover {
    background-color: #8c0202; /* Darker red on hover */
}

.contact-us-content .contact-info-details {
    margin-top: 40px;
    text-align: center;
    color: #555;
    font-size: 1.1em;
}

.contact-us-content .contact-info-details p {
    margin-bottom: 12px;
}

.contact-us-content .contact-info-details a {
    color: #a80303; /* Primary red */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-us-content .contact-info-details a:hover {
    color: #8c0202; /* Darker red on hover */
}

/* Footer Styles */
footer {
    background-color: #333; /* Dark grey footer background */
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

footer h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2em;
}

footer .contact-info p,
footer .social-links a {
    color: #eee;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    font-size: 1em;
}

footer .social-links a:hover,
footer .contact-info p a:hover {
    color: #fff;
}

footer .social-links a i {
    margin-right: 8px;
    font-size: 1.1em;
}

footer .copyright {
    margin-top: 30px;
    border-top: 1px solid #555;
    padding