@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:wght@300;400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sanse', sans-serif;
}

@media (max-width: 768px) {
    #product-shop .pro-container {
        flex-direction: column;
        align-items: center;
    }

    #page-header {
        height: 30vh;
    }
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#header .logo {
    height: 60px; /* Adjust the height to make it smaller */
    width: auto;  /* Maintain aspect ratio */
    margin-right: auto; /* Push the logo to the far left */
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: aliceblue;
    transition: 0.3 ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: lightgray;
    transition: color 0.3s ease-in-out; 
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background-color: lightgray;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#hero {
    background-image: url(../img/a31dbfdd7c27465ff666d4880ace1771.jpg);
    background-position: right center;
    background-size: contain; /* Ensures the image covers the full section without leaving empty spaces */
    background-repeat: no-repeat; /* Prevents tiling of the image */
    background-color: white;
    height: 100vh; /* Full viewport height */
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4{
    padding-bottom: 15px;
}

#hero h1 {
    color: lightpink;
}

#hero button {
    background-color: lightpink; /* Button background color */
    color: white; /* Button text color */
    font-size: 16px; /* Text size */
    font-weight: 600; /* Text weight for a bold look */
    padding: 12px 24px; /* Add space inside the button */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

#hero button:hover {
    background-color: darkpink; /* Slightly darker pink on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

#hero button:focus {
    outline: none; /* Remove focus outline */
    box-shadow: 0 0 10px lightpink; /* Add a subtle glow when focused */
}

#feature {
    display: flex;
    gap: 20px; /* Adds space between feature boxes */
    flex-wrap: wrap; /* Makes the layout responsive */
    justify-content: center; /* Centers the boxes in the section */
}

#feature .fe-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
    background-color: #fefefe;
    border-radius: 12px;
    margin: 15px 0;
}

#feature .fe-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#feature .fe-box img {
    max-width: 100%; /* Ensures the image fits within the box's width */
    height: auto;    /* Maintains the image's aspect ratio */
    margin: auto;  /* Centers the image horizontally */
    display: block;  /* Ensures proper alignment within the box */
    border-radius: 12px;
    overflow: hidden;
}

#feature .fe-box:hover{
    transform: translateY(-5px); /* Slightly lift the box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 35px rgba(70, 62, 221, 0.2); /* Add more depth */
    border-radius: 16px;
}

#feature .fe-box h6 {
    padding: 10px;
    border-radius: 8px; /* Rounded corners for a softer look */
    background: linear-gradient(90deg, #ff9a9e, #fad0c4); /* Gentle gradient */
    color: #fff; /* White text for contrast */
    font-size: 14px; /* Slightly smaller and more refined font size */
    font-weight: 500; /* Medium weight for readability */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    margin-top: 10px; /* Add spacing between text and other elements */
    text-align: center; /* Align the text centrally */
    text-transform: uppercase; /* Optionally make the text uppercase */
}

#feature .fe-box h6:hover {
    background: linear-gradient(90deg, #fad0c4, #ff9a9e); /* Reverse gradient */
    transform: scale(1.05); /* Slightly enlarge on hover */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth effect */
}

#product1 {
    text-align: center;
}

#product1 .pro-container{
    display: flex;
    justify-content: center;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 240px; /* Slightly wider for better proportion */
    padding: 20px; /* Add padding for balance */
    background: #ffffff; /* Clean, soft background */
    border: 1px solid #f0f0f0; /* Subtle border for framing */
    border-radius: 15px; /* Rounded corners for a modern look */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
    text-align: center; /* Center the content */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Smooth hover effect */
    flex: 1 1 calc(25% - 20px); /* Adjust for gap spacing */
    max-width: calc(25% - 40px); /* Prevents items from exceeding row width */
    margin: 10px; /* Adds space between individual boxes */
    box-sizing: border-box; /* Ensures proper spacing for padding/border */
}

@media (max-width: 768px) {
    #product1 .pro {
        flex: 1 1 calc(50% - 40px); /* 2 items per row for medium screens */
    }
}

@media (max-width: 480px) {
    #product1 .pro {
        flex: 1 1 100%; /* 1 item per row for small screens */
    }
}

#product1 .pro:hover {
    transform: scale(1.05); /* Slight zoom-in on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Deeper shadow on hover */
}


#product1 .pro img {
    width: 80%; /* Slightly smaller image for breathing room */
    border-radius: 12px; /* Rounded corners for consistency */
    margin: 0 auto; /* Center align */
    display: block; /* Ensure proper layout */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

#product1 .pro img:hover {
    transform: scale(1.05); /* Enlarge slightly on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Add depth on hover */
}

#product1 .pro h6 {
    font-size: 16px; /* Slightly larger for readability */
    font-weight: 600; /* Make it more prominent */
    color: #333; /* Neutral and soothing text color */
    margin-top: 15px; /* Add space above the text */
    text-transform: capitalize; /* Make it look cleaner */
}

#product1 .pro p {
    font-size: 14px; /* Slightly smaller for description */
    color: #666; /* Softer secondary text color */
    margin-top: 10px; /* Space between elements */
}

#product1 .pro span {
    font-size: 18px; /* Highlight the price */
    font-weight: bold;
    color: #ff6f61; /* Eye-catching color */
    display: block; /* Separate it from other elements */
    margin-top: 10px;
}

#product1 .pro i {
    color: #ff6f61; /* Match the price color */
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

#product1 .pro i:hover {
    color: #ff3f3f; /* Slightly darker on hover */
}

#page-header {
    background-image: url(img/banner.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
}

#product-shop .pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#product-shop .pro {
    width: 250px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#product-shop .pro:hover {
    transform: scale(1.05);
}

#product-shop .pro img {
    width: 100%;
    border-radius: 8px;
}

#product-shop .pro h5, #product-shop .pro h4 {
    margin-top: 10px;
    color: #333;
}

#product-shop .pro .star i {
    color: #ff6f61;
    margin-top: 5px;
}

#product-shop .pro a {
    color: #ff6f61;
    font-size: 20px;
    margin-top: 10px;
    display: inline-block;
}



#page-header {
    color: white;
    text-align: center;
    padding: 50px 20px;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

#cart thead {
    background-color: #f2f2f2;
}

#cart td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

#cart img {
    width: 80px;
}

#cart-items input {
    width: 50px;
    padding: 5px;
}

#cart .remove-btn {
    cursor: pointer;
    color: #ff0000;
}

#cart-total {
    display: flex;
    justify-content: flex-end;
    padding: 20px 80px;
}

#total-box {
    border: 1px solid #e2e9e1;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#total-box h3 {
    margin-bottom: 15px;
    text-align: center;
}

#total-box table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

#total-box td {
    padding: 10px 0;
    text-align: left;
}

#total-box .checkout-btn {
    width: 100%;
    background-color: #ff0000;
    color: white;
    padding: 12px 0;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#total-box .checkout-btn:hover {
    background-color: #ff0000;
}

#checkout-form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

#checkout-form h2, #checkout-form h3 {
    margin-bottom: 15px;
    text-align: center;
}

#checkout-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

#checkout-form .checkout-btn {
    width: 100%;
    background-color: #ff0000;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    border-radius: 8px;
}

#checkout-form .checkout-btn:hover {
    background-color: #ff0000;
}

#order-summary {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Unified Zealor Button Style */
.zealor-btn {
    width: 100%;
    background: #ff3f3f;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 10px rgba(85, 63, 240, 0.25);
    cursor: pointer;
    transition: background 0.3s ease;
}

.zealor-btn:hover {
    background: #011627;
}
