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

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

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

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

h6 {
    font-weight: 700;
    font-size: 12px;
    color: #0f3d2e;
}

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

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

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

body {
    width: 100%;
    background: #f5f1eb;
    color: #0E1F1C;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */

.navbar {
    background-color: #0f3d2e !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999;
}

.navbar .logo {
    width: 130px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #f5f1eb !important;
    padding: 10px 20px;
    position: relative;
    transition: 0.3s ease;
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c9a24d !important;
}

.navbar-nav .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: #c9a24d;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

/*Products Section*/

#product1 {
    text-align: center;
    background: linear-gradient(180deg, #f5f1eb 0%, #ebe6dd 100%);
    padding: 60px 0;
}

.TittleOfShop {
    margin: 30px 0;
    font-size: 42px;
    color: #0f3d2e;
    animation: titleFade 1s ease forwards;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 20px;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 15px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #e0dcd6;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    transition: 0.3s ease;
}

#product1 .pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 61, 46, 0.25);
}

#product1 .pro img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

#product1 .pro:hover img {
    transform: scale(1.05);
}

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

#product1 .ro h5 {
    color: #0f3d2e;
    font-size: 15px;
}

#product1 .ro h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f6f54;
}

.star i {
    color: #c9a24d;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pro:hover .star i {
    transform: scale(1.15);
    color: #b8933f;
}

/*CartIcon*/
#product1 .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #0f3d2e;
    color: #fff;
    border: none;
    position: absolute;
    bottom: 20px;
    right: 15px;
    transition: 0.3s ease;
}

#product1 .pro:hover .cart {
    transform: scale(1.15);
    background-color: #c9a24d;
    color: #0f3d2e;
}

/*FOOTER*/

.BA-footer {
  background-color: #0f3d2e;
  color: #f5f1eb;
  padding: 60px 0 20px;
  font-size: 14px;
  text-align: center;
}

.BA-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 40px;
}

.BA-footer-box {
  line-height: 1.8;
}

.BA-footer-logo {
  color: #c9a24d;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.BA-footer-box h3 {
  color: #c9a24d;
  margin-bottom: 15px;
  font-size: 18px;
}

.BA-footer-text {
  color: #e6e2dc;
}

.BA-footer-box i {
  color: #c9a24d;
  margin-right: 8px;
}

.BA-footer-links {
  list-style: none;
  padding: 0;
}

.BA-footer-links li {
  margin-bottom: 10px;
}

.BA-footer-links a {
  color: #e6e2dc;
  text-decoration: none;
  transition: 0.3s ease;
}

.BA-footer-links a:hover {
  color: #c9a24d;
}

.BA-footer-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.BA-footer-form input {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.BA-footer-form button {
  background-color: #c9a24d;
  color: #0f3d2e;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.BA-footer-form button:hover {
  background-color: #b8933f;
}

.BA-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #e6e2dc;
}