@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: #f5c518;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-gold {
  background-color: #f5c518;
  color: #0a0a0a;
}
.btn-gold:hover {
  background-color: #d4a70b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #f5c518;
}
.btn-glass:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: #f5c518;
}

/* HEADER */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #0a0a0a;
}
.site-header .header-top {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header .header-top .header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .site-header .header-top .header-top-inner {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.site-header .header-top .logo {
  max-width: 180px;
  flex-shrink: 0;
}
.site-header .header-top .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.site-header .header-top .header-search {
  flex-grow: 1;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-header .header-top .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
}
.site-header .header-top .header-search .search-form {
  display: flex;
  align-items: center;
  background: transparent;
  border: 2px solid #f5c518;
  border-radius: 30px;
  overflow: hidden;
}
.site-header .header-top .header-search .search-form input[type=text] {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
  outline: none;
}
.site-header .header-top .header-search .search-form input[type=text]::placeholder {
  color: #888;
}
.site-header .header-top .header-search .search-form button {
  background: transparent;
  border: none;
  color: #f5c518;
  padding: 0 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.site-header .header-top .header-search .search-form button:hover {
  color: #fff;
}
.site-header .header-top .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.site-header .header-top .header-actions .cart-icon-wrap {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}
.site-header .header-top .header-actions .cart-icon-wrap:hover {
  border-color: #f5c518;
  color: #f5c518;
}
.site-header .header-top .header-actions .cart-icon-wrap .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f5c518;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-top .header-actions .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 768px) {
  .site-header .header-top .header-actions .mobile-menu-toggle {
    display: block;
  }
}
.site-header .header-top .header-actions .mobile-menu-toggle:hover {
  color: #f5c518;
}
.site-header .header-bottom {
  background: #f5c518; /* Matching the blue in the reference image */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .site-header .header-bottom .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f5c518;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    padding: 20px 0;
  }
  .site-header .header-bottom .main-nav.active {
    display: block;
  }
}
.site-header .header-bottom .main-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0;
  padding: 15px 0;
}
@media (max-width: 768px) {
  .site-header .header-bottom .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }
}
.site-header .header-bottom .main-nav ul li a {
  font-weight: 400;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}
.site-header .header-bottom .main-nav ul li a:hover {
  color: #000;
}

/* CAROUSEL */
.hero-slider {
  margin-top: 0px;
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.hero-slider .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.hero-slider .slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slider .slider-bullets {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-slider .slider-bullets .bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider .slider-bullets .bullet.active {
  background: #f5c518;
  width: 24px;
  border-radius: 6px;
}
.hero-slider .slider-bullets .bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* CATEGORIES VITRINE */
.categories-vitrine {
  padding: 60px 0;
}
.categories-vitrine .cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.categories-vitrine .cat-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  height: 410px;
}
.categories-vitrine .cat-card:hover {
  border-color: #f5c518;
  transform: translateY(-5px);
}
.categories-vitrine .cat-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.categories-vitrine .cat-card h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 0;
}

/* PRODUCT CARD */
.products-vitrine {
  padding: 60px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.product-card:hover {
  border-color: #f5c518;
}
.product-card img {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.product-card .short-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
  flex-grow: 1;
}
.product-card .price {
  font-size: 22px;
  font-weight: bold;
  color: #f5c518;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
.product-card .variations-select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
  border-radius: 6px;
}

/* 4 BANNERS GRID */
.banners-4-grid {
  padding: 40px 0;
}
.banners-4-grid .b-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .banners-4-grid .b-grid {
    grid-template-columns: 1fr;
  }
}
.banners-4-grid .b-item {
  border-radius: 12px;
  overflow: hidden;
}
.banners-4-grid .b-item img {
  width: 100%;
  transition: transform 0.5s ease;
}
.banners-4-grid .b-item:hover img {
  transform: scale(1.05);
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 0;
}
.about-section .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-section .about-inner .info {
  max-width: 530px;
  width: 100%;
}
@media (max-width: 768px) {
  .about-section .about-inner {
    grid-template-columns: 1fr;
  }
}
.about-section img {
  border-radius: 20px;
  border: 2px solid #f5c518;
}

/* FOOTER */
.site-footer {
  background: #050505; /* A bit darker than body */
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer .custom-logo-link {
  max-width: 250px;
}
.site-footer .custom-logo-link img {
  width: 100%;
  height: auto;
}
.site-footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
.site-footer .footer-top .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-brand {
    flex-direction: column;
    text-align: center;
  }
}
.site-footer .footer-top .footer-brand .brand-slogan {
  color: #aaa;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-brand .brand-slogan {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 15px;
  }
}
.site-footer .footer-top .contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.site-footer .footer-top .contact-cards .contact-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-top .contact-cards .contact-card .icon {
  color: #f5c518;
  font-size: 24px;
}
.site-footer .footer-top .contact-cards .contact-card .info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.site-footer .footer-top .contact-cards .contact-card .info .label {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.site-footer .footer-top .contact-cards .contact-card .info .value {
  color: #f5f5f5;
  font-weight: 500;
}
.site-footer .footer-top .contact-cards .contact-card .arrow {
  color: #555;
  font-size: 20px;
  transition: all 0.3s ease;
}
.site-footer .footer-top .contact-cards .contact-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
  background: #151515;
}
.site-footer .footer-top .contact-cards .contact-card:hover .arrow {
  color: #f5c518;
  transform: translateX(5px);
}
.site-footer .footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}
.site-footer .footer-middle .company-desc {
  color: #888;
  font-size: 14px;
  max-width: 600px;
  margin: 0;
}
.site-footer .footer-middle .socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-middle .socials .label {
  font-weight: 600;
  color: #f5f5f5;
  margin-right: 10px;
}
.site-footer .footer-middle .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5c518;
  color: #0a0a0a;
  font-size: 20px;
  transition: all 0.3s ease;
}
.site-footer .footer-middle .socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(245, 197, 24, 0.3);
}
@media (max-width: 768px) {
  .site-footer .footer-middle {
    flex-direction: column;
    text-align: center;
  }
}
.site-footer .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .site-footer .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .site-footer .footer-links-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-links-grid .footer-col h4 {
  color: #f5f5f5;
  font-size: 16px;
  margin-bottom: 20px;
}
.site-footer .footer-links-grid .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links-grid .footer-col ul li {
  margin-bottom: 12px;
}
.site-footer .footer-links-grid .footer-col ul li a {
  color: #888;
  font-size: 14px;
}
.site-footer .footer-links-grid .footer-col ul li a:hover {
  color: #f5c518;
}
.site-footer .footer-links-grid .payments-security {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.site-footer .footer-links-grid .payments-security .icons {
  display: flex;
  gap: 10px;
}
.site-footer .footer-links-grid .payments-security .icons i {
  font-size: 32px;
  color: #ccc;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}
.site-footer .footer-bottom .bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .bottom-inner p {
  color: #666;
  font-size: 12px;
  margin: 0;
}
.site-footer .footer-bottom .bottom-inner strong {
  color: #f5f5f5;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom .bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* CART MODAL */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.cart-modal-overlay .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  gap: 8px;
  transition: all 0.3s ease;
}
.cart-modal-overlay.active {
  display: flex;
}

.cart-modal {
  background: #0a0a0a;
  width: 90%;
  max-width: 500px;
  border: 1px solid #f5c518;
  border-radius: 16px;
  padding: 30px;
  position: relative;
}
.cart-modal .close-cart {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #f5f5f5;
}
.cart-modal .close-cart:hover {
  color: #f5c518;
}
.cart-modal .cart-items {
  max-height: 400px;
  overflow-y: auto;
  margin: 20px 0;
}
.cart-modal .cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-modal .cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-modal .cart-item .item-info {
  flex-grow: 1;
}
.cart-modal .cart-item h4 {
  margin-bottom: 0;
  font-size: 16px;
}
.cart-modal .cart-item p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}
.cart-modal .cart-item .item-price {
  color: #f5c518;
  font-weight: bold;
}
.cart-modal .cart-item .remove-item {
  color: red;
  cursor: pointer;
  font-size: 12px;
}
.cart-modal .cart-total {
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 20px;
  color: #f5c518;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

.container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media (max-width: 1440px) {
  .container {
    max-width: 1430px;
  }
}
@media (max-width: 1270px) {
  .container {
    max-width: 1430px;
  }
}

.c-copy {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 1440px) {
  .c-copy {
    max-width: 121.6rem;
  }
}
@media (max-width: 1270px) {
  .c-copy {
    max-width: 1430px;
  }
}
