@font-face {
  font-family: Century Gothic, Lato, sans-serif;
}
@font-face {
    font-family: lucyn;
    src: url(assets/fonts/lucyn.ttf) format("opentype");
}
@font-face {
  font-family: jolin;
  src: url(assets/fonts/Balkist-Bold.otf) format("opentype");
}
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;700;900&family=Abril+Fatface&family=Old+Standard+TT:wght@400;700&display=swap');

:root {
  --fire-red: #ff3d00;
  --fire-orange: #ff7b00;
  --fire-yellow: #ffd000;
  --paper-bg: #f4f1ea;
  --text-dark: #1a1a1a;
  
}
a {
  text-decoration: none;
}
@font-face {
  font-family: florania;
  src: url(assets/fonts/florania.otf) format("opentype");
}

body {
  font-family: Century Gothic, Lato, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensure padding and borders don't exceed element dimensions */
  line-height: 1.6; /* Improve text readability */
  color: #333; /* Default text color */
  background-color: #f8f9fa; /* Neutral background */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  scroll-behavior: smooth;
}

/* Main Element Styling */
main {
  display: block; /* Ensure main is treated as a block element */
  width: 100%; /* Ensure it spans the full width of smaller screens */
  background-color: #fff; /* Neutral background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for distinction */
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  body {
    font-size: 14px; /* Smaller base font size */
  }
  main {
    padding: 1px; /* Reduce padding for smaller screens */
  }
  .img-f{
    height: auto;
    width: 100%;
  }
}

/* Media Query for Larger Screens */
@media (min-width: 1200px) {
  body {
    font-size: 18px; /* Slightly larger font for desktops */
  }
  main {
    padding: 5px; /* More breathing space on larger screens */
  }
}

:root {
  --card-height: 300px;
  --card-width: calc(var(--card-height) / 1.5);
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
  height: 100vh;
  position: relative;
  text-align: center;
}
#back-top {
  z-index: 1000;
  background: red;
  height: 50px;
  width: 50px;
  right: 31px;
  bottom: 30px;
  position: fixed;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  border: 2px solid transparent;
  a i {
    display: block;
    line-height: 50px;
    color: #fff;
  }
}
.img-f {
  transition: all 1s ease;
  &:hover {
    transform: scale(1.2);
  }
}
/* Cart Icon Container */
#fab {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
}

/* Cart Icon */
#fab i {
    font-size: 1.8rem;
}

/* Cart Badge */
#cart_count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

