* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.shipping-banner {
    position: relative;
    background-color: #AA8F80;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    text-decoration: underline;
    z-index: 3;
    text-transform: uppercase;
}

.logo {
    height: 40px;
    width: 120px;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.navbar:hover {
    background-color: #ffffff;
}

.nav-items {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* Pushes the nav items to the right */
}

.nav-item {
    position: relative;
    margin: 0 5px;
    padding: 0;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    padding: 15px 12px;
    display: block;
    font-weight: bold;
    font-size: 13px;
    transition: color 0.3s ease;
}

.navbar:hover .nav-link {
    color: #8E8378;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.icon {
    margin-left: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover;
    z-index: -1;
}

.content {
    position: absolute;
    top: 60%;
    left: 20%;
    transform: translate(-50%, -50%);
}


.content h1 {
    font-size: 48px;
    color: white;
    font-weight: 600;
    text-align: left;
}

.content p {
    color: white;

}

.content a {
    text-decoration: none;
    background-color: #EFE6DA;
    display: inline-block;
    color: #8E8378;
    font-size: 24px;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.shop-now-btn:hover {
    background-color: #957965;
    color: white;
}

.justin {
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.product-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.products {
    display: flex;
    overflow: hidden;
    width: 90%;
}

.product {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.product img {
    width: 50%;
    height: 50%;
}

.product-name,
.product-price {
    margin: 10px 0;
    font-size: 10px;
    text-transform: uppercase;
    color: #73675E;
    font-weight: bold;
}

.arrow {
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    user-select: none;
    bottom: 60%;
}

.image-section {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
}

.image-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.image-box {
    position: relative;
    width: calc(50% - 20px);
    /* Adjusted width to account for margin */
    overflow: hidden;
    margin-right: 50px;
    /* Increased margin for more space */
}

.image-box:last-child {
    margin-right: 0;
    /* Remove margin from the last image-box to avoid extra space */
}

.image-box img {
    width: 100%;
    height: auto;
}

.overlay-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
}

.shop-now-btn {
    display: inline-block;
    background-color: #EFE6DA;
    color: #8E8378;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #957965;
}



.stocks {
    display: flex;
    overflow-x: auto;
    width: 90%;
    scroll-behavior: smooth;
}

.instock {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.instock img {
    width: 50%;
    height: 50%;
}

.instock-name,
.instock-price {
    margin: 10px 0;
    font-size: 10px;
    text-transform: uppercase;
    color: #73675E;
    font-weight: bold;
}

.arrow {
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    user-select: none;
}

.left-arrow {
    position: absolute;
    left: 0;
}

.right-arrow {
    position: absolute;
    right: 0;
}

.quote {
    margin: 60px auto;
    /* Centering with auto left and right margins */
    padding: 0 80px;
    /* 40px padding on left and right */
    text-align: center;
    font-size: 20px;
    color: #62544A;
    font-family: Arial, Helvetica, sans-serif;
    max-width: calc(100% - 80px);
    /* Ensuring it doesn't exceed the viewport width */
    box-sizing: border-box;
    /* Ensures padding is included in the width */
    line-height: 1.6;
}

/* Footer Styling */
footer {
    display: flex;
    justify-content: space-between;
    background-color: #f8f5f2;
    padding: 40px 20px;
    color: #62544A;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    text-align: center;
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #62544A;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section form {
    display: flex;
    margin: 20px 0;
}

.footer-section input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px 0 0 3px;
}

.footer-section button {
    padding: 10px 20px;
    border: none;
    background-color: #62544A;
    color: #fff;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.footer-section button:hover {
    background-color: #4e423c;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section .social-icons {
    margin-top: 20px;
}

.footer-section .social-icons a {
    margin-right: 10px;
}

.footer-section .social-icons img {
    width: 24px;
    height: 24px;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap onto new lines */
    justify-content: space-around;
    /* Distribute items evenly with space around */
    align-items: flex-start;
    /* Align items at the start of the cross axis */
}

.trending {
    flex: 0 0 23%;
    /* Flex basis for each item, adjust as needed */
    margin-bottom: 20px;
    /* Space between items */
    text-align: center;
}

.trending img {
    width: 100%;
    /* Ensure images fill their containers */
    height: auto;
    /* Maintain aspect ratio */
}

.trending a {
    position: relative;
    display: inline-block;
    color: #635B54;
    /* Initial color */
    font-size: 16px;
    /* Initial font size */
    font-weight: bold;
    /* Initial font weight */
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    /* Smooth transitions */
}

.trending a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #9D9386;
    transition: width 0.3s ease, left 0.3s ease;
}

.trending a:hover {
    color: #635B54;
    /* Color on hover */
    font-size: 20px;
    /* Larger font size on hover */
    font-weight: bold;
    /* Bold font weight on hover */
    transform: translateY(-5px);
    /* Move text up slightly */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Shadow effect */
}

.trending a:hover::before {
    width: 100%;
    left: 0;
}

.product-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-image {
    flex: 1;
    max-width: 50%;
}

.product-image img {
    width: 100%;
    height: auto;
}

.carousel-container {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.carousel-title {
    font-size: 34px;
    font-weight: bold;
    margin-top: -150px;
    color: #62544A;
}

.carousel-description {
    font-size: 16px;
    color: #62544A;
    font-weight: 600px;
}

.carousel-item {
    text-align: center;
}

.carousel-item img {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

.carousel-item p {
    margin: 10px 0 5px;
}

.slick-prev,
.slick-next {
    background-color: none !important;
    border-radius: 50% !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slick-prev:before,
.slick-next:before {
    top: 70px;
    color: #62544A !important;
    font-size: 60px !important;
}
