@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Montserrat", serif;
}

::selection {
  background-color: #ff6e4e;
  color: black;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  overflow: hidden;
}

html {
  font-size: 62.5%;
  position: relative;
  scroll-behavior: smooth;
}

/* font-family: "Montserrat", serif; */

/* font-family: "Cormorant Garamond", serif; */

/* navbar start */

.nav{
    width: 100%;
    background-color: black;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background-color: black;
  }
  
  .hover-underline {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    z-index: 2;
  }
  
  .hover-underline:hover {
    color: #0ff;
    transition: all 0.3s;
  }
  
  .hover-underline::before,
  .hover-underline::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ff0000, #00ffff);
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .hover-underline::before {
    top: 0;
    transform-origin: left;
  }
  
  .hover-underline::after {
    bottom: 0;
    transform-origin: right;
  }
  
  .hover-underline:hover::before,
  .hover-underline:hover::after {
    transform: scaleX(1);
  }
  
  .hover-underline:hover::before {
    transform-origin: right;
  }
  
  .hover-underline:hover::after {
    transform-origin: left;
  }
  
  .borderYtoX {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    z-index: 2;
  }
  
  nav.borderYtoX ul {
    display: flex;
    gap: 30px;
  }
  
  nav.borderYtoX a {
    padding: 7px 10px;
    color: #ffffff;
    position: relative;
    font-size: 1.6rem;
  }
  
  .borderYtoX a:hover {
    color: #0ff;
    transition: all 0.3s;
  }
  
  nav.borderYtoX a:before,
  nav.borderYtoX a:after {
    position: absolute;
    opacity: 0.5;
    height: 100%;
    width: 2px;
    content: "";
    background: #fff;
    transition: all 0.3s;
  }
  
  nav.borderYtoX a:before {
    left: 0px;
    top: 0px;
  }
  
  nav.borderYtoX a:after {
    right: 0px;
    bottom: 0px;
  }
  
  nav.borderYtoX a:hover:before,
  nav.borderYtoX a:hover:after {
    opacity: 1;
    height: 2px;
    width: 100%;
  }
  
  .nav-icon {
    color: #ff6e4e;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  
  .nav-icon::after {
    content: "0";
    font-size: 15px;
    color: black;
    background-color: #ff6e4e;
    position: absolute;
    right: 20;
    bottom: 25px;
    z-index: 2;
    padding: 1px 5px;
    border-radius: 50%;
  }
  
  .nav-icon:hover {
    color: white;
    transition: all 0.3s;
    transform: scale(1.1);
  }
  
  .nav-icon:hover::after {
    background-color: white;
    color: black;
    transition: all 0.3s;
  }
  
  .nav-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 3;
  }
  
  /* navbar end */

  /* shop-text start */

  .shop-textt {
    width: 100%;
    padding: 0 20px; 
  }
  
  .shop-textt .container {
    max-width: 1200px; 
    margin: 0 auto; 
  }
  
  .shop-textt .title {
    font-size: 2.5rem;
    font-weight: 600;
    color: black;
    padding: 40px 0;
    border-bottom: 1px solid rgb(198, 194, 194);
    text-align: center; 
  }
  
  .shop-text-mainn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 10px; 
  }
  
  .shop-text-mainn p {
    font-size: 1.6rem;
    color: black;
    padding: 20px 0;
    margin: 0; 
  }
  

@media screen and (max-width: 1200px) {
  .shop-textt .title {
    font-size: 2.2rem;
    padding: 30px 0;
  }

  .shop-text-mainn {
    justify-content: center;
    text-align: center;
  }

  .shop-text-mainn p {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}

@media screen and (max-width: 992px) {
 
  .shop-textt .title {
    font-size: 2rem;
    padding: 20px 0;
  }

  .shop-text-mainn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; 
    gap: 10px;
  }

  .shop-text-mainn p {
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
    white-space: nowrap; 
  }
}


@media screen and (max-width: 768px) {
  .shop-textt .title {
    font-size: 2rem;
    padding: 20px 0;
  }
  .shop-text-mainn p {
    font-size: 1.2rem;
    padding: 8px 0;
    text-align: center;
  }
}

@media screen and (max-width: 425px) {
  .shop-textt .title {
    font-size: 1.8rem;
    padding: 15px 0;
  }
  .shop-text-mainn p {
    font-size: 1.1rem;
    padding: 5px 0;
  }
}

/* shop-text end */

/* flower image start */

  .shopmain {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px; 
  }
  
  .shop-part-1{
    display: flex;
    justify-content: space-between; 
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  
  .flower-prize {
    width: 23%; 
    position: relative;
    overflow: hidden;
    min-width: 200px;
  }
  
  .flower-prize-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1; 
  }
  
  .flower-prize-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .flower-prize:hover .flower-prize-image img {
    transform: scale(1.1);
  }
  
  .flower-prize-image p {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 17px;
    color: #6b6262;
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }
  
  .flower-prize-image .shop-icon {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 16px;
    color: #6b6262;
    background: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: rotate(-45deg) scale(0.8);
  }
  
  .flower-prize:hover .shop-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  
  .flower-prize-text {
    padding: 15px 0;
    text-align: center;
  }
  
  .flower-prize-text p:nth-child(1) {
    font-size: 18px;
    color: #6b6262;
    padding-bottom: 5px;
  }
  
  .flower-prize-text p:nth-child(2) {
    font-size: 22px;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    padding-bottom: 5px;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
  }
  
  .flower-prize-text p:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff6e4e;
    transition: width 0.4s ease;
  }
  
  .flower-prize:hover .flower-prize-text p:nth-child(2)::after {
    width: 100%;
  }
  
  .star-icon {
    font-size: 1.2rem;
    color: #6b6262;
    padding: 8px 0;
  }
  
  .flower-prize-text p span {
    text-decoration: line-through;
    font-weight: 300;
  }
  
  .flower-prize-text p:nth-child(4) {
    font-family: "Montserrat", serif;
    font-size: 16px;
    color: #6b6262;
    font-weight: 700;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
@media screen and (max-width: 1200px) {
  .flower-prize {
    width: 350px;
  }
  .flower-prize-image img {
    height: 350px;
  }
}

@media screen and (max-width: 990px) {
  .flower-prize {
    width: 300px;
  }
  .flower-prize-image img {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .shop-part-1 {
    justify-content: center;
  }
  .flower-prize {
    width: 100%;
    max-width: 400px;
  }
  .flower-prize-image img {
    height: 400px;
  }
  .flower-prize-text p:nth-child(2) {
    font-size: 18px;
  }
  .flower-prize-text p:nth-child(4) {
    font-size: 14px;
  }
}

@media screen and (max-width: 580px) {
  .flower-prize {
    width: 100%;
    max-width: 300px;
  }
  .flower-prize-image img {
    height: 300px;
  }
  .flower-prize-text p:nth-child(2) {
    font-size: 16px;
  }
  .flower-prize-text p:nth-child(4) {
    font-size: 12px;
  }
}

@media screen and (max-width: 425px) {
  .shop-part-1 {
    gap: 10px;
  }
  .flower-prize {
    width: 100%;
    max-width: 280px;
  }
  .flower-prize-image img {
    height: 280px;
  }
  .flower-prize-text p:nth-child(1) {
    font-size: 14px;
  }
  .flower-prize-text p:nth-child(2) {
    font-size: 16px;
  }
  .flower-prize-text p:nth-child(4) {
    font-size: 12px;
  }
}

@media screen and (max-width: 400px) {
  .flower-prize {
    max-width: 250px;
  }
  .flower-prize-image img {
    height: 250px;
  }
  .flower-prize-text p:nth-child(1) {
    font-size: 13px;
  }
  .flower-prize-text p:nth-child(2) {
    font-size: 15px;
  }
  .flower-prize-text p:nth-child(4) {
    font-size: 11px;
  }
}

@media screen and (min-width: 768px) and (max-width: 820px) {
  .shop-part-1 {
    justify-content: center;
  }
}

/* flower image end */


/* footer start */
footer {
  width: 100%;
  background-color: #fff5f0;
  padding: 60px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-section {
  gap: 30px;
}

.footer-section-1 {
  padding-bottom: 60px;
}

.footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-section p {
  line-height: 1.6;
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.links {
  list-style: none;
}
.links li {
  margin-bottom: 10px;
}
.links a {
  text-decoration: none;
  color: #666;
  font-size: 18px;
}
.links a:focus {
  outline: 2px solid #ff6f61;
  outline-offset: 4px;
}
.contact-info p {
  margin: 5px 0;
  font-size: 14px;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

.social-icons a:hover {
  color: #ff6f61;
}

.copyright {
  text-align: center;
  font-size: 20px;
  color: #999;
}

.copyright-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-1 {
  border-top: 2px solid #eee;
  background-color: #fff5f0;
  padding: 20px;
}

/* footer end */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: red; 
  color: white; 
  cursor: pointer; 
  padding: 8px;
  border-radius: 5px; 
  font-size: 18px; 
}

#myBtn:hover {
  background-color: #555; 
}








  