* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, serif;
  background: #ffffff;
  color: #d4af37;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.top-bar {
  background: #ffffff;
  color: #c79f2c;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 20;
  padding: 20px 40px;
  transition: all 0.35s ease;
}

.overlay-header {
  position: fixed;
  top: 40px;
  left: 0;
  background: transparent;
}

.overlay-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.normal-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 58px;
  height: auto;
}

.brand-text h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #d4af37;
}

.brand-text p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 5px;
  color: #ead9a0;
}

.premium-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.premium-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: 0.3s ease;
}

.premium-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: 0.3s ease;
}

.premium-menu a:hover {
  opacity: 0.85;
}

.premium-menu a:hover::after {
  width: 100%;
}

.overlay-header.scrolled .premium-menu a,
.premium-menu-light a,
.normal-header .premium-menu a {
  color: #b88f25;
}

.overlay-header.scrolled .premium-menu a::after,
.premium-menu-light a::after,
.normal-header .premium-menu a::after {
  background: #b88f25;
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown > a {
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 50;
}

.menu-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #9f7a21 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.25s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: #faf5e8;
  color: #d4af37 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .cart-toggle {
  background: #ffffff;
  color: #111111;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.header-actions .cart-toggle span {
  background: #d4af37;
  color: #ffffff;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
  display: inline-block;
}

.overlay-header.scrolled .header-actions .cart-toggle,
.normal-header .header-actions .cart-toggle {
  background: #d4af37;
  color: #ffffff;
}

.overlay-header.scrolled .header-actions .cart-toggle span,
.normal-header .header-actions .cart-toggle span {
  background: #ffffff;
  color: #d4af37;
}

/* HERO VIDEO */

.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dark-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34));
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 90%);
  margin-top: 80px;
  color: #ffffff;
  text-align: left;
}

.hero-mini-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #f3e8bd;
}

.hero-video-content h2 {
  font-size: 72px;
  line-height: 1.02;
  max-width: 760px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-video-text {
  font-size: 22px;
  max-width: 640px;
  color: #f7f2e4;
  margin-bottom: 28px;
}

.hero-video-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* SECTIONS */

.section {
  padding: 80px 30px;
  text-align: center;
}

.section-top-space {
  padding-top: 120px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #b78e2d;
}

.catalog-text {
  color: #8d7a47;
  margin-top: 10px;
}

/* FILTERS */

.filters-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 10px;
}

.search-input,
.price-filter {
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: #ffffff;
  color: #8d6f1d;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  min-width: 240px;
  outline: none;
}

.subcategories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.subcategory-btn {
  background: #ffffff;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.subcategory-btn:hover,
.subcategory-btn.active {
  background: #d4af37;
  color: #ffffff;
}

/* PRODUCTS */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 35px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: linear-gradient(180deg, #ffffff, #f8f6ef);
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
}

.product-card.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    box-shadow 0.35s ease;
}

.product-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal.visible:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.12),
    0 0 12px rgba(212, 175, 55, 0.18);
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #6f5415;
}

.product-card p {
  font-size: 13px;
  color: #8d7a47;
  margin-bottom: 10px;
  min-height: 58px;
}

.product-card span {
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
  color: #caa63a;
  font-size: 16px;
}

.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-card-btn,
.secondary-card-btn {
  flex: 1;
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.primary-card-btn {
  background: #d4af37;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

.primary-card-btn:hover {
  background: #f2d56b;
}

.secondary-card-btn {
  background: #ffffff;
  color: #7d641e;
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.secondary-card-btn:hover {
  background: #f9f5e8;
}

.empty-products {
  grid-column: 1 / -1;
  text-align: center;
  color: #b68f27;
  font-size: 18px;
}

/* CATALOG */

.catalog-wrapper {
  max-width: 1000px;
  margin: 30px auto 0;
}

.catalog-frame {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #d4af37;
}

.catalog-image {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 10px;
}

.catalog-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #d4af37;
}

.top-left {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-radius: 10px 0 0 0;
}

.top-right {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 10px 0 0;
}

.bottom-left {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 10px;
}

.bottom-right {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 10px 0;
}

.catalog-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.catalog-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  background: #ffffff;
  color: #d4af37;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.catalog-arrow:hover {
  background: #d4af37;
  color: #ffffff;
}

.catalog-buttons {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-view-btn,
.catalog-download-btn {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.catalog-view-btn {
  background: #d4af37;
  color: #ffffff;
  border: 1px solid #d4af37;
}

.catalog-download-btn {
  background: #ffffff;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.catalog-view-btn:hover,
.catalog-download-btn:hover {
  transform: translateY(-2px);
}

/* CONTACT */

.contact-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  max-width: 700px;
  margin: auto;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-box p {
  margin-bottom: 12px;
}

.contact-box a {
  color: #f2d56b;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* FOOTER */

.footer {
  background: #ffffff;
  padding: 25px;
  text-align: center;
  color: #d4af37;
}

/* NOTIFICATION */

.site-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #424c64;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
}

.site-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* CART */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1200;
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-header h3 {
  color: #b48d2e;
}

.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #b48d2e;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 18px;
}

.cart-empty {
  text-align: center;
  color: #b48d2e;
  margin-top: 30px;
}

.cart-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.cart-item-info h4 {
  color: #9a7720;
  font-size: 16px;
  margin-bottom: 4px;
}

.cart-item-info p {
  color: #666666;
  font-size: 14px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.cart-item-actions button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #d4af37;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.cart-item-remove {
  margin-top: 10px;
}

.cart-item-remove button {
  border: none;
  background: none;
  color: #b04848;
  cursor: pointer;
  font-size: 14px;
}

.cart-footer {
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #9a7720;
  font-size: 18px;
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-clear,
.cart-whatsapp {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
}

.cart-clear {
  background: #d4af37;
  color: #ffffff;
}

.cart-whatsapp {
  background: #25d366;
  color: #ffffff;
}

/* PRODUCT MODAL */

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1400;
}

.product-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(920px, 92vw);
  max-height: 90vh;
  overflow: auto;
  transform: translate(-50%, -50%) scale(0.96);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  padding: 28px;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #a3832b;
}

.product-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.product-modal-image-wrap {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-modal-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.product-modal-category {
  color: #b78e2d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.product-modal-info h3 {
  color: #7f6320;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.product-modal-info p {
  color: #6a6a6a;
  margin-bottom: 18px;
}

.product-modal-price {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 20px;
}

.product-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.primary-btn {
  background: #d4af37;
  color: #ffffff;
}

.secondary-btn {
  background: #25d366;
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .hero-video-content h2 {
    font-size: 54px;
    max-width: 620px;
  }

  .hero-video-text {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .overlay-header {
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .premium-menu a {
    color: #b88f25;
  }

  .premium-menu a::after {
    background: #b88f25;
  }

  .header {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .hero-video-section {
    min-height: 78vh;
  }

  .hero-video-content {
    margin-top: 0;
    text-align: center;
  }

  .hero-video-content h2 {
    font-size: 38px;
    max-width: 100%;
  }

  .hero-video-text {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .hero-video-buttons {
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-drawer {
    width: 100%;
  }

  .product-modal-content {
    grid-template-columns: 1fr;
  }

  .product-modal-image-wrap img {
    height: 280px;
  }

  .filters-bar {
    flex-direction: column;
    align-items: center;
  }

  .search-input,
  .price-filter {
    width: 100%;
    max-width: 340px;
  }

  .menu-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 6px 0 0;
    min-width: auto;
  }

  .dropdown-menu a {
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .hero-video-content h2 {
    font-size: 28px;
  }

  .hero-mini-label {
    font-size: 11px;
  }

  .hero-video-text {
    font-size: 14px;
  }

  .premium-menu {
    gap: 14px;
    justify-content: center;
  }

  .premium-menu a {
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .top-bar {
    font-size: 11px;
    padding: 8px;
  }

  .product-modal {
    padding: 18px;
  }

  .product-modal-info h3 {
    font-size: 24px;
  }
}