
:root{
  --red: red;
  --white: #ffffff;
  --pink: rgb(255, 190, 190);
  --black: #000000;
  --font: "Poppins", sans-serif;
  --head-font:  font-family: "Julius Sans One", sans-serif;
  --light_pink: #e5a063;
  --dark_pink: #855905;
  --light_pink:    #aab7ff;
  }
  

*
{
  font-family: var(--font)
}

body {
  font-family: var(--font);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
header
{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.notify-div {
  /* height: 100px; */
  display: flex;
  padding: 0;
  gap: 0px;
  margin: 0px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--dark_pink);
  color: var(--white);
  width: 100%;
  padding: 0 0px;
}
.notify-div > span {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  background: wheat;
  /* animation: wiggle 2s linear infinite; */
  height: 30px;
}

.notify-div > span > img {
  height: 20px;
  width: 20px;
}
.notify-div > span > h6 {
  font-size: 16px;
  font-weight: 900;
  margin-top: 10px;
}
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
​

.counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  background: wheat;
}



.home-section {
  height: 80px;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 10px;
  border-bottom: 3px solid black;
}

.time {
  display: flex;
  gap: 10px;
  background: #683a00;
  border-radius: 0px;
  padding: 0px 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  height: 58px;
}

.time div {
  text-align: center;
  min-width: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0px;
  background: transparent;
}

.time span {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--white);
}

.time p {
  font-size: 0.8em;
  color: var(--white);
  margin: 2px 0 0;
}


.logo-div-hdr
{
      height: 100%;
    /* border: 1px solid; */
    display: flex;
    align-items:center;
    justify-content: center;
}
.logo-div-hdr img
{
  width: 50%;
    margin-top: -20px;
}

.wrapper {
  position: relative; 
  display: inline-block;
}

.link_wrapper {
  position: relative;
}

#cart-btn{
  color: black;
  /* border: 1px solid #c1c1c1; */
  padding: 4px 5px;
  margin-top: -15px;
  background: none;
  border: none;
}

#loginbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  width: 250px;
  height: 45px;
  line-height: 50px;
  font-weight: bold;
  text-decoration: none;
  background: var(--dark_pink);
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  /* border: 3px solid #333; */
  transition: all .35s;
}
.icon {
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all .35s;
}

.icon svg {
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  transform: rotate(-45deg);
  fill: #2ecc71;
  transition: all .35s;
}

#loginbtn:hover {
  width: 200px;
  border: 3px solid #2ecc71;
  background: transparent;
  color: #2ecc71;
}

#loginbtn:hover + .icon {
  border: 3px solid #2ecc71;
  right: -25%;
}

.header-div {    
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    /* border: 2px solid black; */
    padding-bottom: 5px;
    margin-top: 8px;

}

.links-div-hdr,
.icons-div-hdr {
  display: flex;
  justify-content: end;
  gap: 0px;
  align-items: center;
}
#menubutton {
  height: 40px;
  width: 40px;
  margin-top: -3px;
}

.links-div-hdr a,
.icons-div-hdr .tgs {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  color: var(--dark_pink);
  transition: .2s all ease-in-out;
}
.links-div-hdr a:hover
{
  margin-bottom: 10px;

}

.hdr-pagination-div {
      display: flex;
        justify-content: center;
        align-items: center;
        /* border: 2px solid; */
        height: 100%;
        gap: 18px;
        margin-bottom: 9px;
}
.hdr-pagination-div.fixed > a{
  font-size: 15px;
  color: white;
  margin-top: 20px;
}

.hdr-pagination-div.fixed {
  position: fixed;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-align: center;
  /* border-radius: 10px; */
  /* margin-left: -106px; */
  width: 100%;
  margin-top: -322px;
  background-color: var(--dark_pink);
  z-index: 2;
  /* top: 0; */
  /* left: 0; */
  /* z-index: 1000; */
  box-shadow: 2px 2px 8px rgb(85 85 85);

}
.hdr-pagination-div.fixed > .cart-div  {
display: flex;
align-items: center;
justify-content: end;
padding: 5px;
}
.hdr-pagination-div.fixed > .cart-div > img {
height: 30px;
width: 30px;
margin-left: -10px;
}

.hdr-pagination-div a {
  text-decoration: none;
  color: var(--dark_pink);
  font-weight: 400;
  font-size: 0.9em;
  letter-spacing: 2px;
  width: 10%;
  /* border: 1px solid; */
  display: flex;
  justify-content: center;
  transition: .4s all ease-in-out;
  font-family: var(--head-font);
  margin-bottom: 15px;
}
.hdr-pagination-div a:hover
{
  color: var(--light_pink);
}


.btn-close
{
    width: 5%!important;
    color: rgb(0, 0, 0)!important;
    font-weight: bold!important;
}



.nav-link{
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: 'Futura Light', sans-serif;
  color: white;
}
.nav-item {
  border-bottom: 1px solid #404040;
    padding: 2px;
    text-align: start;
    width: 100%;
    padding-bottom: 15px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-item > a {
   color: white;
}
.offcanvas-body {
padding: 0px;
}
/* footer */

.nav-main-div  {
  display: flex;
  justify-content: space-between;    
}
.cart-div {
  display: flex;
  align-items: center;
  justify-content: end;
}
.cart-div > img {
  height: 35px;
  width: 35px;
  padding: 4px;
  transition: 0.3 all ease-in-out;
  margin-left: -10px;
}
.carts-div{
  display: none;
}

.cart-div > img:hover {
  height: 35px;
  width: 35px;
  margin-left: -10px;
  filter: invert(1); 
  background: white;
  padding: 4px;
   border-radius: 50%;
}
.social-media {   
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
      height: 90px;
}
.social-media > a{
  color: #ffffff;
  font-size: 15px;
  padding: 5px 15px;
  border: 1px solid #ffffff;
}
.footers{
  display: none;
}
/* Small mobile devices (landscape and portrait) */
@media (max-width: 575.98px) {
  /* Styles for small mobile devices */
  .product-detail-div > .product-detail-subdiv {
    display: flex
;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.footers{
  display: block;
}

  .hdr-pagination-div
  {
    display: none;
  }
   .links-div-hdr a
  {
    display: none;
  }

  .logo-div-hdr img {
    width: 130%;
    height: 110px;
    margin: 15px 3px;
    filter: invert(1);
}
.icons-div-hdr{
  justify-content: end;
}
.offcanvas
{
  max-width: 85%;
}
.icons-div-hdr
{
  justify-content: space-between;
}
.icons-div-hdr .tgs
{
justify-content: space-between;
}
.link_wrapper {
  display: none;
}
.carts-div {
  display: flex;
  align-items: center;
  justify-content: end;
}
.carts-div > img {
  height: 32px;
  width: 32px;
  margin-left: -10px;
}
.nav-main-div {
display: flex;
justify-content: space-between;
display: none;
}
.wrapper {
width: 100%;
}
.header-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid #e9e9e9;
  margin-top: 5px;
  width: 100%;
  background: rgb(86 148 255);
  margin: 0px;
  height: 60px;
  filter: invert(1);
  padding: 0px 0px;
}

.icons-div-hdr {
  justify-content: end;
  margin-top: 10px;
  }
.notify-div {
  height: 65px;
  align-items: center;
  display: flex;
  width: 100%;
}
.counter {
  display: flex;
          margin-top: -5px;
  justify-content: start;
  align-items: start;
  gap: 0px;
  width: 90%;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  
}
.time {
  display: flex;
  gap: 4px;
  background: var(--dark_pink);
  border-radius: 0px;
  padding: 0px 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.links-div-hdr,
.icons-div-hdr {

  justify-content: start;

}

.time div {
    text-align: center;
    min-width: 60px;
    display: flex
;
    align-items: center;
    gap: 3px;
    background: transparent;
}
.time span {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--white);
}
.time p {
    font-size: 0.8em;
    color: var(--white);
    margin: 2px 0 0;
}

}

/* Large mobile devices (landscape and portrait) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Styles for large mobile devices */
 .hdr-pagination-div
  {
    display: none;
  }
   .links-div-hdr a
  {
    display: none;
  }
  .justify-content-end {
    justify-content: flex-end !important;
    padding: 10px;
}
.nav-item {
    border-bottom: 1px solid #dfdfdf;
    padding: 2px;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
}
.nav-link {
    font-size: 21px;
    font-weight: 600;
}


  .link_wrapper {
    display: none;
  }
  .carts-div {
    display: flex;
    align-items: center;
    justify-content: end;
}
.about-us-main-section {
  display: flex
;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  gap: 10px;
  margin-top: -10px;
}
.carts-div > img {
    height: 32px;
    width: 32px;
    margin-left: -10px;
}

.nav-main-div {
display: flex;
justify-content: space-between;
display: none;
}
.wrapper {
width: 100%;
}
    .logo-div-hdr img {
     width: 60%;
}
.offcanvas
{
  max-width: 80%;
}
.icons-div-hdr
{
  justify-content: space-between;
}
.icons-div-hdr .tgs
{
justify-content: space-between;
}
.icons-div-hdr {
  justify-content: end;
  margin-top: 10px;
  }
.header-div {
  display: flex
;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  border-bottom: 1px solid var(--light_pink);
  padding-bottom: 5px;
  padding: 10px;
  margin-top: 8px;
  width: 100%;
}

.notify-div {
  height: 70px;
  align-items: center;
  display: flex;
  flex-direction: column; 
  width: 100%;
}
.counter {
  display: flex;
          margin-top: -5px;
  justify-content: start;
  align-items: start;
  gap: 0px;
  width: 90%;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  
}
.time {
  display: flex;
  gap: 22px;
  background: var(--dark_pink);
  border-radius: 10px;
  padding: 0px 0px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.time div {
    text-align: center;
    min-width: 60px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: transparent;
}

#hdr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: black;
  color: white;
}

.time span {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--white);
}
.time p {
    font-size: 0.8em;
    color: var(--white);
    margin: 2px 0 0;
}
#account{
  display: none;
}
.carousel-container {
  width: 100%;
  background: black;
  /* max-width: 700px; */
  color: white;
  margin-top: -2px;
  height: 37px;
  /* padding: 11px; */
}
}

/* Tablets (portrait) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Styles for tablets in portrait mode */
 .hdr-pagination-div
  {
    display: none;
  }
   .links-div-hdr a
  {
    display: none;
  }
  .link_wrapper {
    display: none;
  }
  .footers{
    display: block;
  }
  .carts-div {
    display: flex;
    align-items: center;
    justify-content: end;
}
.cart-div > img {
    height: 32px;
    width: 32px;
    margin-left: -10px;
}
    .logo-div-hdr img {
     width: 60%;
}
.product-detail-div > .product-detail-subdiv {
  display: flex
;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.links-div-hdr,
.icons-div-hdr {

  justify-content: start;

}

.nav-main-div {
display: flex;
justify-content: space-between;
display: none;
}

#hdr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: black;
  color: white;
}

.about-us-main-section {
  display: flex
;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  gap: 10px;
  margin-top: -10px;
}
.wrapper {
width: 100%;
}
.offcanvas
{
  max-width: 80%;
}
.icons-div-hdr
{
  justify-content: space-between;
}
  .justify-content-end {
    justify-content: flex-end !important;
    padding: 10px;
}
.nav-item {
    border-bottom: 1px solid #dfdfdf;
    padding: 2px;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
}
.nav-link {
    font-size: 21px;
    font-weight: 600;
}
.icons-div-hdr .tgs
{
justify-content: space-between;
}
.icons-div-hdr {
  justify-content: end;
  margin-top: 10px;
  }
.header-div {
  display: flex
;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  border-bottom: 1px solid var(--light_pink);
  padding-bottom: 5px;
  padding: 10px;
  margin-top: 8px;
  width: 100%;
}

.time div {
    text-align: center;
    min-width: 60px;
    display: flex
;
    align-items: center;
    gap: 3px;
    background: transparent;
}
.time span {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--white);
}
.time p {
    font-size: 0.8em;
    color: var(--white);
    margin: 2px 0 0;
}
#account{
  display: none;
}

.carousel-container {
  width: 100%;
  background: black;
  /* max-width: 700px; */
  color: white;
  margin-top: -2px;
  height: 37px;
  /* padding: 11px; */
}
}

/* Tablets (landscape) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Styles for tablets in landscape mode */
  .navbar-toggler
  {
    display: none;
  }
  .notify-div {
    height: 74px;
    align-items: center;
    display: flex;
    flex-direction: column; 
    width: 100%;
  }
  .counter {
    display: flex
  ;
    justify-content: start;
    align-items: start;
    gap: 0px;
    width: 90%;
    font-family: 'Poppins', sans-serif;
    background: transparent;
  }
  .time {
    display: flex
  ;
    gap: 22px;
    background: var(--dark_pink);
    border-radius: 10px;
    padding: 0px 0px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
}

/* Small laptops */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* Styles for small laptops */
    .navbar-toggler
  {
    display: none;
  }
}

/* Large laptops */
@media (min-width: 1400px) and (max-width: 1599.98px) {
  /* Styles for large laptops */
    .navbar-toggler
  {
    display: none;
  }
}
/* Desktops and larger screens */
@media (min-width: 1600px) {
  /* Styles for desktops and larger screens */
    .navbar-toggler
  {
    display: none;
  }
 
}

/* Reset some styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
}

/* Footer container */
.footer {
  background: black;
  color: #fff;
  position: relative;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  margin-top: 35px;
}

.footer .container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Footer Section */
.footer .section {
  flex: 1;
  margin: 10px;
}

.footer .section h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffae16;
  position: relative;
  padding-left: 20px;
}

/* Underline Effect for Section Title */
.footer .section h4::before {
  content: "";
  position: absolute;
  /* left: 108px; */
  bottom: -5px;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
}

/* Links styling */
.footer .section ul {
  list-style-type: none;
}

.footer .section ul li {
  margin-bottom: 15px;
}

.footer .section ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer .section ul li a:hover {
  color: #ff7f50;
  padding-left: 10px;
}

/* Newsletter Section */
.footer .newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #333;
  padding: 30px;
  border-radius: 8px;
}

.footer .newsletter h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer .newsletter input[type="email"] {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #444;
  margin-bottom: 20px;
  width: 100%;
  max-width: 350px;
  background-color: #222;
  color: #fff;
  transition: background-color 0.3s;
}

.footer .newsletter input[type="email"]:focus {
  background-color: #444;
  border-color: #ff7f50;
  outline: none;
}

.footer .newsletter button {
  padding: 12px 25px;
  background-color: #ff7f50;
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.footer .newsletter button:hover {
  background-color: #ff5722;
  transform: scale(1.05);
}

/* Social Media Icons */
.footer .social-icons a {
  margin-right: 20px;
  color: #fff;
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
}

.footer .social-icons a:hover {
  color: #ff7f50;
  transform: scale(1.1);
}

/* Footer Bottom Section */
.footer .bottom {
  background-color: #111;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
}

.footer .bottom p {
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer .section {
    text-align: center;
    margin: 15px 0;
  }

  .footer .newsletter {
    text-align: center;
    padding: 30px 20px;
    max-width: 100%;
  }

  .footer .newsletter input[type="email"] {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer .newsletter button {
    width: 100%;
  }
}

