/*NAVBAR CODE */

body {
    font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #E7F1DA; 
	overflow-x: hidden;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar {
    background-color: #F2B5A8;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out; /* Added transition for smooth scaling */
    padding: 30px 0; /* Initial padding for large navbar */
	overflow: visible !important; /* the dropdown buttons are now visible! yay */
}

.navbar a {
    color: #781721; 
    font-size: 20px; /* Initial font size */
    transition: font-size 0.3s ease-in-out; /* Add transition for font size */
   
}

.navbar a:hover {
    color: #FF6B6B;
}

.navbar.small {
    padding: 10px 0; /* Smaller padding for small navbar */
}

.navbar.small a {
    font-size: 17px; /* Smaller font size for small navbar */
}

.logo {
    display: flex;
    align-items: center; 
    padding-left: 30px; 
}

.logo a {
    display: flex; 
    align-items: center; 
    text-decoration: none; 
}

.logo img {
    width: 200px; /* Initial width of the logo */
    height: 120px; /* Initial height of the logo */
    margin-right: 10px; 
    transition: transform 0.3s, width 0.3s, height 0.3s; /* Add transition for smooth scaling */
}

.navbar.small .logo img {
    width: 80px; /* Smaller width for small navbar */
    height: 50px; /* Smaller height for small navbar */
}

/* Scale up the logo on hover */
.logo a:hover img {
    transform: scale(1.15);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
}

/* Cart Navbar Button */
.cart-navbar {
    display: inline-block;
    padding: 10px 16px;
    position: relative;
    text-decoration: none;
}

/* Cart Icon Styling */
.cart-icon {
    width: 24px; /* Adjust width */
    height: 24px; /* Adjust height */
    display: inline-block;
	padding: 0 5px;
    vertical-align: middle; /* Align icon with text */
    transition: transform 0.2s ease; /* Add hover effect */
}

/* Hover Effect: Change to another image */
.cart-navbar:hover .cart-icon {
    content: url('CART ICON hover.png');
}


/* Disable body scroll */
body.no-scroll {
    overflow: hidden; /* Prevent scrolling */
}

/* Default hidden state */
#cart-frame,
#overlay {
    display: none; /* Hidden by default */
}

/* Overlay styling */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Overlay over other elements */
    opacity: 0; /* Hidden */
    visibility: hidden; /* Hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade */
}

/* Show overlay when active */
#overlay.active {
    opacity: 1; /* Fully visible */
    visibility: visible; /* Fully visible */
    display: block; /* Ensure it appears */
}

/* Cart frame styling */
#cart-frame {
    position: fixed;
    right: -100%; /* Initially off-screen */
    top: 0;
    width: 26%;
    height: 100%;
    background-color: #fff;
    z-index: 1000; /* Ensure it's above the overlay */
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: right 0.3s ease; /* Smooth transition for sliding */
}

/* Show cart frame when active */
#cart-frame.active {
    right: 0; /* Slide into view */
}

/* Close Button */
#close-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    cursor: pointer;
    color: #333;
}

#close-cart:hover {
    color: #781721; /* Change color on hover */
}

/* Footer box styling */
#cart-footer-box {
    position: sticky; /* Stick to the bottom */
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

/* Total section styling */
#cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

/* Checkout button styling */
#checkout-button {
    width: 80%;
    padding: 12px;
    background-color: #d9534f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

#checkout-button:hover {
    background-color: #c9302c;
}

/* Cart Content */
#cart-title {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
}

/* Box to hold cart items */
#cart-item-box {
    flex-grow: 1; /* Fill available space above footer */
    overflow-y: auto; /* Enable scrolling for long lists */
    padding: 10px 20px;
    box-sizing: border-box;
}

/* Empty message styling */
#cart-empty-message {
    font-size: 16px;
    color: #999;
    text-align: center;
    padding: 20px;
}

/* Individual cart items */
.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
	margin-top: -10%;
}

.cart-item:last-child {
    border-bottom: none; /* No border for last item */
}

.item-name {
    flex-grow: 1; /* Name stretches */
}

.item-price {
    font-weight: bold;
    color: #666;
}

/* Empty message styling */
#cart-empty-message {
    font-size: 16px;
    color: #999;
    text-align: center;
    padding: 20px;
}

#cart-item-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.cart-item {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.cart-item-left {
    width: 100px; /* Set image width */
    height: 100px;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-right {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: bold;
}

.cart-item-price {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.cart-item-total-price {
    margin-top: 3%; /* Space between the original price and total price */
    font-weight: bold;
    color: #333; /* You can adjust the color as needed */
	margin-bottom: -.5%;
}

.custom-quantity-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between quantity buttons and bin icon */
    padding-top: 3%;
}

.custom-quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #C2C2C2;
    border-radius: 0; /* Set to 0 for sharp corners */
    font-weight: bold;
    width: 100px; /* Fixed width for the quantity selector */
}

.custom-quantity-button {
    background-color: #C2C2C2;
    color: #144a3e;
    border: none;
    padding: 10px 0; /* Consistent padding */
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 0; /* Set to 0 for sharp corners */
    width: 40px; /* Fixed width for buttons */
}

.custom-quantity-button:hover {
    background-color: #A2A2A2;
}

.custom-quantity-selector span {
    font-size: 1.2em;
    margin: 0 10px;
    width: 40px; /* Fixed width for the quantity display */
    text-align: center; /* Center the text */
}



.remove-item {
    background: none;
    border: none;
    cursor: pointer;
}

.remove-item ion-icon{
    width: 20px;
    height: 20px;
}





.navbar a:hover {
    background-color: #BF93AE;
    color: #FFFFFF;
}

.logo a:hover {
    background-color: transparent; 
    color: #781721; 
}

.dropdown {
    position: relative; /* Ensure the dropdown menu is positioned relative to the parent */
    display: inline-block;
}

/* Dropdown button hover effect */
.dropdown:hover .dropbtn {
    background-color: #BF93AE; /* Background color on hover */
	color: white;
    transform: scale(1.05); /* Slightly expand the button */
}

.dropdown-content {
    display: none; /* Hide the dropdown menu by default */
    position: absolute; /* Position it relative to the dropdown container */
    background-color: #F2B5A8; /* Background color for dropdown menu */
    min-width: 160px; /* Set minimum width for the dropdown menu */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Add a shadow for better visibility */
    z-index: 1000; /* Ensure the dropdown menu is on top of other content */
    border-radius: 5px; /* Rounded corners */
    top: 100%; /* Position below the button */
    left: 0; /* Align with the left edge of the button */
}



/* Style for dropdown list items */
.dropdown-content li {
    list-style: none; /* Remove default list style */
}

.dropdown-content a {
    color: #781721; /* Color of the dropdown links */
    padding: 12px 16px; /* Padding for dropdown links */
    text-decoration: none; /* Remove underline from links */
    display: block; /* Make the links block level to fill the menu width */
    text-align: left; /* Align text to the left */
}

.dropdown-content a:hover {
    background-color: #C6B1BE; /* Background color on hover */
    color: white; /* Color of text on hover */
	transform: scale(1.10); /* Slightly expand the button */
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}





/* contact pop up box */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal.fade-in {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #F3D1CA;
    margin: 5% auto; /* Centered vertically and horizontally */
    padding: 20px;
    border: 35px solid transparent; /* Thicker border */
    width: 100%; /* Could be more or less, depending on screen size */
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    border-image: url('pattern.jpeg') 30 round; /* Thicker border image */
}

.close {
    color: #781721;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #1D6357;
    text-decoration: none;
    cursor: pointer;
}

.contact-page {
    text-align: center;
}

.contact-header {
    margin-bottom: 20px;
    color: #781721;
}

.contact-header h2 {
    font-size: 36px; /* Larger font size for "Contact Us" */
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    flex: 1 1 calc(50% - 20px); /* Adjusting width for side-by-side layout */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; /* Added gap between form groups */
}

.contact-form .form-group.full-width {
    flex: 1 1 100%;
}

.contact-form label {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #781721;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #BF93AE; /* Line underneath input fields */
    border-radius: 0px;
    background-color: transparent;
}

.contact-form .form-group:first-child {
    margin-bottom: 30px; /* Increased gap between first name and last name */
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #781721; /* Change line color on focus */
}

.contact-form button {
  position: relative;
  overflow: hidden;
  color: #BF93AE;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 15px; /* Adjust padding to ensure text is vertically centered */
  text-align: center; /* Center the text horizontally */
  text-decoration: none;
  cursor: pointer;
  background: #781721;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 80%;
  border: none;
  margin: 5px auto 0 auto;
	 font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
}

.contact-form button span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
  display: block;
  text-align: center; /* Center the text inside the span */
  line-height: normal; /* Ensure proper line-height */
}

.contact-form button span:last-child {
  color: #781721;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the text horizontally and vertically */
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  height: 14px;
  line-height: 13px;
}

.contact-form button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #BF93AE;
  transform-origin: bottom left; /* Start the transformation from the bottom left */
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: scaleY(0); /* Start with no height (collapsed) */
  z-index: 0;
}

.contact-form button:hover:after {
  transform: scaleY(1); /* Fully expand the background vertically */
}

.contact-form button:hover span:last-child {
  transform: translate(-50%, -50%); /* Center text horizontally and vertically when hovered */
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}






 


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-section {
    position: relative;
    height: 100vh; /* Keeps the banner full screen */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 90px;
    background-color: #F3D1CA;

    /* Add this */
    margin-bottom: 100px; /* Or adjust to suit your layout */
	/* Fade-in effect */
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
	
	
}




.hero-section, .hero-image-container {
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;

}

.responsive-video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
  height: 0;
}

.responsive-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}







.self-love-section {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 100px auto;
    padding: 20px;
    background-color: #F3D1CA;
    border-radius: 10px;
    max-width: 85%;
    box-sizing: border-box;
}

.title-container {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: #781721;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', 'serif';
    font-size: 1.5em;
}

.title-container h2 {
    color: #fff;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-container {
    flex: 1;
    margin-right: 20px;
}

.body-text {
    width: 110%; /* Adjust this value to make the text span the container more */
    color: #333;
    font-size: 1.2em;
    line-height: 1.6;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    margin-left: 50px;
}

.styled-table td {
    text-align: left;
    padding: 8px;
}

.image1-container {
    flex: 1; /* Increase this value to make the image container larger */
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.image1-container img {
    width: 85%; /* Increase this value to make the image larger */
    height: auto;
    border-radius: 10px;
}




.workbook-section {
  background-color: #F3D1CA; /* Light pink */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 1100px;
}

.workbook-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.workbook-text {
  flex: 1 1 50%;
  padding-right: 2rem;
}

.workbook-text h2 {
  font-size: 2rem;
  color: #9B2532;
  margin-bottom: 1rem;
}

.workbook-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.workbook-image {
  flex: 1 1 40%;
  text-align: center;
}

.workbook-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Reuse your existing button style */
.btn-shop-now {
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: #F2B5A8;
  background-color: #9B2532;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(155, 37, 50, 0.2);
  transition: background-color 0.3s ease;
}

.btn-shop-now:hover {
  background-color: #F2B5A8;
  color: #9B2532;
}





/* articles */
.content1 {
    text-align: center;
}

.articles-title-container {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 1s, transform 1s;
    margin-bottom: 50px; /* Adjust margin as needed */
}

.articles-title {
    font-size: 3em;
    color: #781721;
    margin-bottom: 20px;
}

.articles-line {
    width: 0;
    height: 2px;
    background-color: #781721;
    margin: 20px auto;
    transform-origin: center;
    transition: width 2s;
}

.article-header {
    font-size: 1.5em;
    color: #781721;
    margin-bottom: 50px; /* Adjust margin as needed */
}

.articles-title-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.articles-title-container.animate .articles-line {
    width: 40%; /* Adjust the width as needed */
}

.articles {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

article {
    margin-bottom: 30px; /* Adjust margin as needed */
    flex: 0 0 calc(48% - 20px); /* Adjusted to account for space between */
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s, transform 0.7s;
    position: relative;
}

.image2-container {
    position: relative;
    overflow: hidden; /* Ensure that the button does not overflow */
}

article img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 10px;
    display: block;
}

/* Move the first article down */
.move-down {
    order: 2;
}

/* Move the second article up */
.move-up {
    order: 1;
}



.read-more-button {
    background-color: #F3D1CA;
    color: #781721;
    border: none;
    padding: 12px 34px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    bottom: 30px; /* Move the button up slightly */
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.5s, opacity 0.5s;
    display: flex;
    align-items: center;
    opacity: 0;
    border-radius: 0; /* No curved corners */
}

.read-more-button .triangle {
    margin-left: 5px; /* Adjust the spacing as needed */
}

.image2-container:hover .read-more-button {
    transform: translateX(0);
    opacity: 1;
}

article h3 {
    margin-top: 10px;
    color: #781721;
    font-size: 1.2em;
    margin-bottom: 5px;
}

article p {
    color: #333;
    font-size: 1em;
}

article.animate {
    opacity: 1;
    transform: translateX(0);
}

article:nth-child(even) {
    transform: translateX(50px);
}

article:nth-child(even).animate {
    transform: translateX(0);
}

/* Additional styles for moving article 4 up or down */
article.move-up {
    margin-top: -200px; /* Adjust this value to move the article up or down */
}

.button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px; /* Adjusted margin */
}

.more-articles-button {
    background-color: #2D8F7F;
    border: none;
    color: white;
    padding: 12px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin-top: 10px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 0px;
}



/* CSS */
.more-articles-button {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.more-articles-button:after {
  content: "";
  background-color: #2D8F7F;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.more-articles-button:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}

.555:hover {
    background-color: #1D6357;
    color: white;
}







	/* Slideshow container */
.slideshow-container {
  max-width: 100%; /* Allow container to take full width */
  position: relative;
  margin: auto;
}

/* Image inside the slideshow */
.slideshow-container img {
  width: 100%; /* Make image responsive and fill the container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensures the image covers the container without distortion */
}

/* Next & previous buttons */
.quote-prev, .quote-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.quote-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.quote-prev:hover, .quote-next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.cap-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .quote-prev, .quote-next, .cap-text {
    font-size: 11px; /* Adjust text size */
  }
}





/* Ensure the section takes the full width and centers its content */
.shop-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30%; /* Or adjust as needed */
    text-align: center;
	margin-top: 5%;
}

/* product slider title */
.shop-title1 {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30%;
    background: linear-gradient(141deg, #ccc 25%, #eee 40%, #ddd 55%);
    font-family: 'Quicksand Medium', sans-serif;
    overflow: hidden;
}

.shop-title {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Quicksand Medium', sans-serif;
    color: #1D6357;
    font-size: 2.5em;
    font-weight: 900;
}

.shop-title span {
    display: inline-block;
    width: 0px;
    overflow: hidden;
    white-space: nowrap;
}

.shop-title.animated span {
    animation: reveal 4s forwards; /* Run animation once and stay */
}

@keyframes reveal {
    0% { width: 0px; }
    100% { width: 800px; } /* Adjusted width */
}






/* product slider */
.product-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-slider-wrapper {
    display: flex;
    width: 100%; /* Total width for images */
    animation: scrollSlider 20s linear infinite; /* Adjust animation duration accordingly */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(29, 99, 87, 0.8); /* Adjust arrow button background color */
    color: white;
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 1; /* Ensure arrows are above product slider */
}

.shop-prev {
    left: 10px;
}

.shop-next {
    right: 10px;
}

.product-slider {
    display: flex;
    width: 12.5%; /* Show 4 products at a time (100% / 8 = 12.5%) */
}

.product {
    position: relative;
    flex: 1 0 25%; /* Show 4 products at a time */
    margin: 50px;
    text-align: center;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}


.product-image {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 10px;
    overflow: hidden; /* Ensure overflow is hidden to contain the overlay */
    border-radius: 50%; /* Ensure the image container is circular */
}

.product-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Ensure the image itself is circular */
    object-fit: cover;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.product-name {
    display: block;
    font-size: 1.2em;
    color: #1D6357;
    text-decoration: none;
    margin: 5px 0;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for hover effect */
}

.product-price {
    font-size: 1em;
    color: #333;
}

.product-image:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 192, 203, 0.5); /* Pink overlay with 50% opacity */
    border-radius: 50%; /* Make the overlay circular */
}

.view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background-color: #1D6357;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
     font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
}

.product-image:hover .view {
    display: block;
    animation: fadeIn 0.9s;
}

.view:hover {
    background-color: #034439;
    color: lightcoral;
}

.product:hover .product-image img,
.product:hover .product-name {
    transform: translateY(-5px); /* Move up by 5px on hover */
}

.product:hover .product-name {
    color: lightcoral; /* Change color on hover */
    text-decoration: underline; /* Underline the title text on hover */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-87.5%); } /* Translate by (100% - 12.5%) for 4 images */
}

.product-slider-container:hover .product-slider-wrapper {
    animation-play-state: paused;
}




/* Shop Now Button Styles */
.shop-now-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em;
    text-align: center;
}

.shop-now-container .btn-shop-now {
    color: #F2B5A8; /* Text color */
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(155, 37, 50, 0);
    outline: 1px solid rgba(155, 37, 50, 1); /* Border line color */
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #9B2532; /* Button background color */
}

.shop-now-container .btn-shop-now:hover {
    color: #9B2532; /* Text color on hover */
    border: 1px solid rgba(0, 0, 0, 0.5); /* Border line color on hover */
    box-shadow: inset 0 0 20px rgba(155, 37, 50, .3), 0 0 20px rgba(155, 37, 50, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #9B2532;
    background-color: #F2B5A8; /* Button background color on hover */
}





.igcontainer {
    background-color: #80C9BD; /* Pink background */
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Makes the container span the full width */
    box-sizing: border-box; /* Ensures padding does not increase width */
}

.insta-handle {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.iggrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px; /* Ensures even spacing around all images */
    max-width: 60%; /* Centers the grid while keeping images contained */
}

.iggrid img {
    width: 100%; /* Makes images take up the full grid cell */
    aspect-ratio: 1 / 1; /* Ensures square images */
    object-fit: cover;
    border-radius: 5px;
}




#scrollToTopBtn {
  background-color: #287669;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: #56EED5;
  cursor: pointer;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  align-items: center;
   font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
  
  float: right; /* Align to the right */
  margin-bottom: 20px; /* Add space from the bottom */
  margin-right: 20px; /* Add space from the right */
	margin-top: 60px;
}

#scrollToTopBtn:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05);
}










	
	.footer {
    position: relative;
    width: 100%;
    background: #781721;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
		margin-top: 240px;
		text-align: center;
}

footer .social_icon, 
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
    list-style: none;
}

footer .social_icon {
	margin-left: -2%;
	margin-top: 10px;
}
    
footer .social_icon a {
    font-size: 2em;
    color: #ffffff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
    
footer .social_icon a:hover {
    transform: translateY(-10px);
}
    
footer .menu a {
    font-size: 1.2em;
    color: #FFFFFF;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}
    
footer .menu a:hover {
    opacity: 1;
}


.subscribe {
    color: white;
    margin-bottom: 20px; /* Space between subscribe section and menu */
	margin-left: -2%;
}

.subscribe p {
    font-size: 20px;
    margin-bottom: 10px;
}

.subscribe-form {
    display: flex;
    justify-content: center; /* Center the form */
    align-items: center;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid white; /* White border */
    background-color: #781721; /* Inside color */
    color: white;
    border-radius: 0; /* Sharp corners */
    outline: none;
    flex: 1;
}

.subscribe-form input[type="email"]:hover {
    background-color: rgba(255, 255, 255, 0.5); /* White with 50% opacity on hover */
    color: #781721;
}

.subscribe-form button {
    padding: 10px;
    font-size: 14px;
    background-color: white; /* Button background color */
    color: #781721;
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
	border: 1px solid white;
}

.subscribe-form button:hover {
    background-color: #781721; /* Button hover background color */
    color: white; /* Button hover text color */
}

    
footer p {
    color: #FFFFFF;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
	margin-left: -2%;
}
    
footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("wave red.png");
    background-size: 1000px 100px;
}
    
footer .wave#wave1 {
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3 {
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}

/* Keyframes for wave animations */
@keyframes animateWave {
    0% { background-position-x: 1000px; }
    100% { background-position-x: 0px; }
}

@keyframes animateWave_02 {
    0% { background-position-x: 0px; }
    100% { background-position-x: 1000px; }
}





/* FLOATING BUTTON START */
.floating-sticker {
            position: fixed;
            bottom: 30px;
            right: 20px;
            width: 130px;
            height: 130px;
            background-color: #bf93ae;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			cursor: pointer;
			z-index: 1;
            opacity: 0;  /* Initially hidden */
   			visibility: hidden; /* Prevents interaction */
    		transition: opacity 0.5s ease-in-out, transform 0.5s ease-out, visibility 0.5s;
}

.floating-sticker.show {
    opacity: 1;  
    visibility: visible;
}
			

        .floating-sticker:hover {
            transform: scale(1.1);
        }

        .floating-sticker img {
            width: 31%;
            height: 62%;
        }

.circle-text {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-origin: center;
            animation: rotateText 10s linear infinite;
			font-size: 8px; /* Adjust text size */
             font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
            fill: #9b2531; /* Text color */
			font-weight: bold;
            letter-spacing: 1px; /* Add space between letters */
        }

        @keyframes rotateText {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
/* FLOATING BUTTON END */

      
