*
{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body
{
  background-color: rgb(32, 32, 32);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

/* Full-Screen Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(32, 32, 32);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hide-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(205, 164, 52, 0.1);
  border-top: 3px solid #cda434;
  border-radius: 50%;
  animation: spin-loader 1s linear infinite;
}

.loader-logo {
  width: 45px;
  z-index: 10000;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.7; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/*Header*/
#header
{
  position: relative;
  display: flex;
  background-color: rgb(32, 32, 32);
  width: 100%;
  height: 70px;
}

#l-header
{
  position: relative;
  width: 50%;
  height: 100%;
}

#menu-icon
{
  width: 60px;
  margin: 5px;
}

#r-header
{
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 50%;
  height: 100%;
}

#h-logo
{
  width: 55px;
  margin: 7.5px;
}

/*Banner*/
#banner
{
  display: block;
  width: 100%;
}

/*Search Bar*/
#search-bar
{
  width: 90%;
  height: 40px;
  margin: 30px 5% 15px;
  padding-left: 10px;
  font-size: 18px;
  color: goldenrod;
  background-color: rgb(32, 32, 32);
  border: solid 2px goldenrod;
  border-radius: 15px;
}

#search-bar::placeholder {
  color: #cda434;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  opacity: 1;
}

input[type="text"]::placeholder {
  color: #a0a0a0;
  opacity: 1;
}

/*Catalog*/
#catalog
{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background-color: rgb(32, 32, 32);
  width: 100%;
  height: fit-content;;
  padding: 10px;
}

.product-card
{
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.product-img
{
  background-color: rgb(50, 50, 50);
  width: 90%;
  padding: 5px;
}

.product-name
{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #cda434;
}

.product-price
{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #ab8a30;
}

/*Footer*/
#footer p {
  font-family: 'Montserrat', sans-serif;
  color: #6a6a6a;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
}

.agency-link {
  color: #8a8a8a;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.agency-link:hover {
  color: #cda434;
}

/*WhatsApp Icon*/
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0px 6px 16px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse-green 2s infinite;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: -300px; /* Hidden off-screen to the left */
  width: 260px;
  height: 100vh;
  background-color: rgb(32, 32, 32);
  border-right: 1px solid #cda434;
  z-index: 2000;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

#mobile-menu.open-menu {
  left: 0; /* Slides in */
}

/* Menu Header */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(205, 164, 52, 0.2);
}

.menu-logo {
  height: 40px;
}

#close-menu {
  background: none;
  border: none;
  color: #cda434;
  font-size: 32px;
  cursor: pointer;
}

/* Menu Links */
.menu-links {
  list-style: none;
  padding: 20px;
  overflow-y: auto;
}

.menu-section {
  color: #a0a0a0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 10px 0;
}

.menu-section:first-child {
  margin-top: 0;
}

.menu-links li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.menu-links li a:hover {
  color: #cda434;
}

/* Background Overlay */
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

#scroll-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  background-color: rgb(32, 32, 32);
  color: #cda434;
  border: 2px solid #cda434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#scroll-top-btn.show-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top-btn:active {
  transform: scale(0.9);
}