@import url("https://fonts.googleapis.com/css2?family=Bilbo+Swash+Caps&family=Caprasimo&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
}

/* logo css starts here */
.image-logo {
  max-width: 100%;
  height: auto;
  width: 80px;
}

nav {
	position: fixed;
	z-index: 20;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 5%;
	height: 60px;
  background:#eee7ed;
}
nav .logo {
	float: left;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
}
nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 60%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 1em;
	font-size: 16px;
	font-weight: bold;
	color: #130f12;
	text-decoration: none;
}
#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 25px;
	height: 5px;
	background-color: #9c8a98;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}
@media screen and (max-width: 768px) {
    nav {
        height: 100px;
    }

	nav .logo {
		float: none;
		width: auto;
		justify-content: center;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgba(0,0,0,.8);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
	nav .links a {
		font-size: 20px;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
	
}

.hero {
    position: relative;
    background: url('images/Regimen-Builder-Hero-web.webp') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 1rem;
    filter: brightness(1.01); /* Increases brightness by 50% */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(203, 198, 203, 0.116) ; /* Black color with 60% opacity */
    z-index: 1; /* Ensure the overlay is behind the content */
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0rem 1.5rem;
}

.hero-content {
    color: #130f12e6;
    z-index: 2; /* Ensure the content is on top of the overlay */
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
    font-size: 2.2rem;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out 0.5s;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    color: #655a61;
    background-color: #fff;
    border-radius: 5rem;
    transition: background-color 0.3s ease-in-out;
    position: relative; /* Ensure button is positioned above overlay. */
    z-index: 3; /* Higher z-index to prevent overlap issues. */
    transition: 0.4s linear;
}

.hero-button:hover {
    background-color: rgba(180, 169, 179, 0.266);
    transform: translateY(5px);
    color: #fff;
}

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


/* shop-our-retinol-bestsellers cards css starts here */
        /* Container Styles */
        .bestsellers-container, .bestsellers-container-heading , .carousel-heading {
            width: 100%;
            padding: 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bestsellers-container-heading {
           margin-bottom: 1rem;
           font-size: 1.1rem;
        }

        /* Grid Container */
        .display-grid-container {
            width: 100%;
        }

        .display-grid-grids {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            width: 100%;
            padding: 0;
        }

        /* Product Card */
        .product-card {
            
            width: 300px;
            margin: 50px auto;
            margin-top: 0.04rem;
            position: relative;
            box-shadow: 0 2px 7px #dfdfdf;
            background: #fafafa;
            cursor: pointer;
            overflow: hidden;
            transition: 0.3s;
            border-radius: 8px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Badges */
        .badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #ddd4d945;
            backdrop-filter: blur(10px);
            color: #130f12;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,.2);
            z-index: 10;
        }

        .badge-2 {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 20px;
            color: #0000007a;
            z-index: 10;
            cursor: pointer;
            transition: 0.3s;
        }

        .badge-2:hover {
            color: #4f4849;
            transform: scale(1.2);
        }

        /* Product Image */
        .product-image-container img {
           width: 100%;
           height: 100%;
           object-fit:cover;
           transition:transform .5s;
        }

        .product-image {
            height:200px;
            overflow:hidden;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        /* Product Details */
        .product-details {
            padding: 30px;
        }

        .product-category {
            display: block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            color: #ccc;
            margin-bottom: 18px;
        }

        .product-details h4 {
         font-weight: 500;
         display: block;
         margin-bottom: 18px;
         text-transform: uppercase;
         color: #363636;
         text-decoration: none;
         transition: 0.3s;
        }

        /* Features */
        .feats {
            display:flex;
            gap:6px;
            margin-bottom:15px;
        }

        .feat {
            font-size:10px;
            background:#F4F4F5;
            color:#71717A;
            padding:3px 8px;
            border-radius:10px;
            font-weight:500;
        }

        /* Price and Button */
        .bottom {
            display:flex;
            justify-content:space-between;
            align-items:center;
            margin-bottom:12px;
        }

        .price {
            display: flex;
            flex-direction: column;
        }

        .new {
            font-size:20px;
            font-weight: 700;
            color: #18181B;
        }

       .btn {
          color:#201f1f;
          border: 1px solid #0000007a;
          border-radius:50px;
          padding:8px 15px;
          font-size:13px;
          font-weight:600;
          cursor:pointer;
          display:flex;
          align-items:center;
          gap:6px;
          transition:.3s;
          box-shadow:0 3px 10px rgba(0,0,0,.1);
        }

        .btn:hover {
            background: #66646520;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,.15);
        }

        .grid-skincare-links {
            color: #433b3b;
            text-decoration: none;
        }

        /* Meta Information */
        .meta {
           display:flex;
           justify-content:space-between;
           align-items:center;
           border-top:1px solid #F4F4F5;
           padding-top:12px; 
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .rcount {
            margin-left: 6px;
            font-size: 11px;
            color: #71717A;
        }

        .stock {
            font-size: 11px;
            font-weight: 600;
            color: #22C55E;
        }

        /* Responsive Design */
        
        /* Large Desktops */
        @media (min-width: 1400px) {
            .display-grid-grids {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Standard Desktops */
        @media (max-width: 1399px) and (min-width: 1200px) {
            .display-grid-grids {
                grid-template-columns: repeat(4, 1fr);
            }
            .bestsellers-container {
                padding: 1rem 2rem;
            }
        }

        /* Small Desktops & Large Tablets */
        @media (max-width: 1199px) and (min-width: 992px) {
            .display-grid-grids {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            .bestsellers-container {
                padding: 1rem 2rem;
            }
        }

        /* Tablets */
        @media (max-width: 991px) and (min-width: 768px) {
            .display-grid-grids {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .bestsellers-container {
                padding: 1rem 1.5rem;
            }
            .product-details {
                padding: 15px;
            }
        }

        /* Large Phones */
        @media (max-width: 767px) and (min-width: 480px) {
            .display-grid-grids {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .bestsellers-container {
                padding: 1rem;
            }
            .product-details {
                padding: 15px;
            }
            .product-details h4 {
                font-size: 13px;
                min-height: 35px;
            }
            .feat {
                font-size: 9px;
                padding: 2px 6px;
            }
            .new {
                font-size: 16px;
            }
        }

        /* Small Phones */
        @media (max-width: 479px) {
            .display-grid-grids {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .bestsellers-container {
                padding: 0.5rem;
            }
            .product-card {
                max-width: 400px;
                margin: 0 auto;
            }
            .product-details {
                padding: 15px;
            }
            .product-details h4 {
                font-size: 14px;
                min-height: auto;
            }
            .bottom {
                flex-direction: row;
                justify-content: space-between;
            }
            .btn {
                padding: 10px 20px;
            }
            .feat {
                font-size: 10px;
            }
        }

        /* Very Small Phones */
        @media (max-width: 360px) {
            .bestsellers-container {
                text-align: center;
            }
            .product-card, .image-container-1{
                border-radius: 15px;
                margin: 0 auto;
            }

            .badge {
                font-size: 10px;
                padding: 4px 8px;
            }
            .product-category {
                font-size: 10px;
            }
            .product-details h4 {
                font-size: 13px;
            }
            .feat {
                font-size: 9px;
                padding: 2px 5px;
            }
            .new {
                font-size: 16px;
            }
            .old {
                font-size: 12px;
            }
            .btn {
                font-size: 11px;
                padding: 8px 15px;
            }
        }

        /* Icons for demonstration */
        .lni-heart::before {
            content: "♡";
        }

/* carousel background css starts here */
.carousel-heading {
   font-size: 1.1rem;
   margin-top: 4rem;
}

.carousel-background {
    background: #f2edf1c9;
    margin: 4rem 1rem;
    margin-top: 2rem;
}

/* carousel css starts here */
.carousel {
  width: 100%;
  padding: 60px 15px 20px 15px;
  position: relative;
  box-sizing: border-box;
}

.carousel__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 20px; 
  margin: 20px 0;
  padding-bottom: 10px;
}

.carousel-item {
  flex-shrink: 0;
  width: 200px; 
  height: 250px;
  border-radius: 20px;
  background-color: #f3ecf2;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 450ms ease, opacity 450ms ease;
}

.carousel-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Item Details: Visible by Default for Mobile --- */
.carousel-item__details {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  font-size: 15px;
  opacity: 1; /* Visible by default on all devices */
  transition: opacity 450ms ease;
  padding: 15px;
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.carousel-item__details span {
  font-size: 1.1rem;
  color: #d49ed4ea;
  margin-right: 8px;
}

.carousel-item__details .controls {
  margin-bottom: 5px;
}

.carousel-item__details--title,
.carousel-item__details--subtitle {
  color: #fff;
  margin: 2px 0;
}

/* --- DESKTOP AND HOVER-CAPABLE DEVICES ONLY --- */
/* This section adds the cool hover effects ONLY on devices that support it. */
@media (hover: hover) and (min-width: 769px) {
  .carousel {
    padding: 80px 30px 30px 30px;
  }

  .categories__title {
    font-size: 28px;
    top: 30px;
    left: 30px;
  }

  /* On desktop, we hide the details until hover */
  .carousel-item__details {
    opacity: 0;
  }

  /* Show details on hover */
  .carousel-item:hover .carousel-item__details {
    opacity: 1;
  }

  /* Add a subtle scaling effect on hover */
  .carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
  }
}

/* hero 2 css starts here */
.hero-2 {
    position: relative;
    background: url('images/pexels-janakukebal-6496459.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 1rem;
    filter: brightness(1.01); /* Increases brightness by 50% */
}

.hero-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(167, 102, 167, 0.116);
    z-index: 1; 
}

.hero-content-2 {
    color: #130f12;
    z-index: 2; 
}

.hero-title-2 {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
    font-size: 1.8rem;
}

.hero-subtitle-2 {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out 0.5s;
}

.hero-button-2 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    color: #130f12;
    font-weight: lighter;
    background-color: #fff;
    border-radius: 5rem;
    transition: background-color 0.3s ease-in-out;
    position: relative;
    z-index: 3;
    transition: 0.4s linear;
}

.hero-button-2:hover {
    background-color: rgba(180, 169, 179, 0.266);
    transform: translateY(5px);
    color: #fff;
}


/* instagram grid css starts here */
.instagram-grid-container {
    padding: 5rem 0rem;
}

.instagram-grid-heading {
    text-align: center;
    font-size: 1.8rem;
    color: rgba(43, 36, 43, 0.501);
    font-weight: lighter;
    padding-bottom: 3rem;
}

.image-grid-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
}

/* Second row with 3 columns */
.image-grid-1 .row-2 {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-container-1 {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.image-container-1 blockquote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .image-grid-1 {
    grid-template-columns: 1fr;
  }

  .image-grid-1 .row-2 {
    grid-template-columns: 1fr;
  }
}


/* footer css starts here */
.footer {
  max-width: 1520px;
  width: 100%;
  background: #9c8a9866;
  border-radius: 6px;
  font-weight: lighter;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-row .footer-col h4 {
  color: #00000085;
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: #000;
}

.footer-col .links li a:hover {
  color: #655a61;
}

.footer-col p {
  margin: 20px 0;
  color: #000000c4;
  max-width: 300px;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input {
  height: 40px;
  border-radius: 20px;
  background: none;
  width: 100%;
  outline: none;
  border: solid 1px #0000003b;
  caret-color: #000;
  color: #000;
  padding-left: 10px;
}

.footer-col input::placeholder {
  color: #000000;
}

 .footer-col form button {
  background: #ffffff8b;
  outline: none;
  border: solid 1px #0000003b;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
  background: #dbd5db5f;
}

.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: #ad5896;
}

.footer-col .icons i:hover {
  color: #5c1348;
}

.safe-payment-details {
    text-align: center;
    padding: 4rem 0rem;
}

.payment-line-icons {
    font-size: 30px;
    color: #000;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }
}

.additional-footer-details {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 0.8rem;
}

.additional-footer-details-link {
  color: #000;
  text-decoration: none;
}

.additional-footer-details-link:hover {
  text-decoration: underline;
}

/* Responsive Design (a COMBINATION of html elements) */
        
        /* Large Desktops */
        @media (min-width: 1400px) {
          
        }

        /* Standard Desktops */
        @media (max-width: 1399px) and (min-width: 1200px) {
          
        }

        /* Small Desktops & Large Tablets */
        @media (max-width: 1199px) and (min-width: 992px) {
           .image-grid-1 {
            margin: 0 3rem; 
           }
        }

        /* Tablets */
        @media (max-width: 991px) and (min-width: 768px) {
           .image-grid-1 {
              margin: 0 3rem;
            } 
        }

        /* Large Phones */
        @media (max-width: 767px) and (min-width: 480px) {
            
            .hero {
              border-radius: 10px; 
              height: 300px;
              margin-top: 8rem;
            }

            .hero-title, .hero-title-2 {
               font-size: 1.2rem;
              /* animation: none; */
            }

            .hero-subtitle {
               font-size: 0.9rem;
               margin-bottom: 0.8rem;
              /* animation: none; */
            }

            .hero-button, .hero-button-2 {
               padding: 7px 10px;
               font-size: 12px;
            }

            .hero-2 {
              border-radius: 10px;
              max-height: 300px;
            }

            .carousel-background {
              border-radius: 10px;
            }

            .image-grid-1 {
              margin: 0 1rem;
            }

            .bestsellers-container-heading, .carousel-heading {
              text-align: center;
              font-size: 1rem;
            }

            .hero-button:hover, .hero-button-2:hover {
              background-color: #fff;
              transform: none;
              color: #655a61;
            }

            .product-card:hover .product-image {
              transform: none;
            }

            .bestsellers-container {
              padding-left: 3rem;
              padding-right: 9rem;
            }

            .bestsellers-container, .bestsellers-container-heading , .carousel-heading {
            width: 100%;
            padding: 1rem;
            max-width: 1400px;
            margin: 0 auto;
           }

        .bestsellers-container-heading {
           margin-bottom: 1rem;
           font-size: 1.1rem;
        }

        /* Product Card */
        .product-card {
            width: 100%;
            position: relative;
            box-shadow: 0 2px 7px #dfdfdf;
            background: #fafafa;
            cursor: pointer;
            overflow: hidden;
            transition: 0.3s;
            border-radius: 8px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Badges */
        .badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #ddd4d945;
            backdrop-filter: blur(10px);
            color: #130f12;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,.2);
            z-index: 10;
        }

        .badge-2 {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 20px;
            color: #0000007a;
            z-index: 10;
            cursor: pointer;
            transition: 0.3s;
        }

        .badge-2:hover {
            color: #4f4849;
            transform: scale(1.2);
        }

        /* Product Image */
        .product-image-container {
            height: 200px;
            overflow: hidden;
            background: #fff;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .5s;
            padding: 10px;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        /* Product Details */
        .product-details {
            padding: 20px;
        }

        .product-category {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 10px;
        }

        .product-details h4 {
            font-weight: 500;
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #363636;
            min-height: 40px;
        }

        /* Features */
        .feats {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 15px;
        }

        .feat {
            font-size: 10px;
            background: #F4F4F5;
            color: #71717A;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Price and Button */
        .bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .price {
            display: flex;
            flex-direction: column;
        }

        .new {
            font-size: 18px;
            font-weight: 700;
            color: #18181B;
        }

        .btn {
            color: #201f1f;
            background: #fff;
            border: 1px solid #0000007a;
            border-radius: 50px;
            padding: 8px 15px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            box-shadow: 0 3px 10px rgba(0,0,0,.1);
        }

        .btn:hover {
            background: #66646520;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,.15);
        }

        .grid-skincare-links {
            color: #433b3b;
            text-decoration: none;
        }

        /* Meta Information */
        .meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #F4F4F5;
            padding-top: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 2px;
            flex-wrap: wrap;
        }

        .rcount {
            margin-left: 6px;
            font-size: 11px;
            color: #71717A;
            white-space: nowrap;
        }

        .stock {
            font-size: 11px;
            font-weight: 600;
            color: #22C55E;
            white-space: nowrap;
        }

           .additional-footer-details {
              font-size: 0.8rem;
              padding: 0rem 3rem;
              padding-bottom: 3rem;
            }

        }

        /* Small Phones */
        @media (max-width: 479px) {
            .hero {
              border-radius: 10px; 
              height: 300px;

              margin-top: 8rem;
              margin-right: 0.5rem;
              margin-left: 0.5rem;
            }
            
            .hero-title, .hero-title-2 {
                font-size: 1.1rem;
            }
            
            .hero-title {
              margin-top: -2rem;
            }

            .hero-title {
              margin-bottom: 0.2rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;

            }
            .hero-2 {
              margin-bottom: 0.1rem;

              margin-right: 0.5rem;
              margin-left: 0.5rem;
            }
            .hero-button, .hero-button-2 {
               padding: 7px 10px;
               font-size: 12px;
            }

            .hero-2 {
              border-radius: 10px;
              max-height: 300px;
            }

            .carousel-background {
              border-radius: 10px;
            }

            .image-grid-1 {
              margin: 0 1rem;
            }

             .instagram-grid-heading {
              font-size: 1.2rem;
              padding-bottom: 0.5rem;
            }

            .product-card:hover {
              transform: none;
            }
            .badge-2:hover {
              transform: none;
            }
            .btn:hover {
              transform: none;
            }

            .bestsellers-container-heading, .carousel-heading {
              text-align: center;
              font-size: 1rem;
            }

            .hero-button:hover, .hero-button-2:hover {
              background-color: #fff;
              transform: none;
              color: #655a61;
            }

            .product-card:hover .product-image {
              transform: none;
            }

            .additional-footer-details {
              font-size: 0.7rem;
              padding: 0rem 3rem;
              padding-bottom: 3rem;
            }
        }

        /* Very Small Phones */
        @media (max-width: 360px) {
            .hero-title, .hero-title-2 {
                font-size: 0.8rem;
            }
            .hero-subtitle {
                font-size: 0.6rem;
            }
            
            .hero-title {
              margin-top: -2rem;
            }

            .hero-title {
              margin-bottom: 0.2rem;
            }

            .hero-2 {
              margin-bottom: 0.1rem;
            }

            .product-card:hover {
              transform: none;
            }
            .badge-2:hover {
              transform: none;
            }
            .btn:hover {
              transform: none;
            }
            .image-grid-1 {
              margin-left: 0.9rem;
            }

            .instagram-grid-heading {
              font-size: 1.2rem;
              padding-bottom: 0.5rem;
            }

            .footer {
              font-size: 0.8rem;
            }

            .bestsellers-container-heading, .carousel-heading {
              text-align: center;
              font-size: 1rem;
            }

            .hero-button:hover, .hero-button-2:hover {
              background-color: #fff;
              transform: none;
              color: #655a61;
            }

            .product-card:hover .product-image {
              transform: none;
            }
        }
