:root {
  --bg-color: #FFFFFF;        
  --text-color: #111111;    
  --accent-gold: #D4AF37;    
  --dark-grey: #222222;      
  --card-bg: #F9F9F9;         
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

@keyframes slideDownTopBar {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-grey);
  color: var(--bg-color);
  padding: 18px 20px; 
  width: 100%;
  border-bottom: 2px solid var(--accent-gold);
  animation: slideDownTopBar 0.8s ease forwards;
}

.top-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.top-bar-item i {
  color: var(--accent-gold);
  font-size: 16px;
  transition: filter 0.3s ease;
}

.top-bar-item:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.top-bar-item:hover i {
  filter: drop-shadow(0 0 8px var(--accent-gold));
}

.clicked-up {
  transform: translateY(-5px) !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.9) !important;
}

.clicked-up i {
  filter: drop-shadow(0 0 10px var(--accent-gold)) !important;
}



/* --- Navbar  */
.navbar-header {
  background-color: var(--bg-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  animation: zoomInFromBack 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

@keyframes zoomInFromBack {
  0% { 
    transform: scale(0.9) translateY(-20px); 
    opacity: 0; 
    filter: blur(5px);
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
    filter: blur(0);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  flex-wrap: nowrap !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible; 
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img.logo-img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    display: block;
    transform: scale(2.6); 
    transform-origin: left center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  white-space: nowrap !important;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px; 
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-gold);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); 
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px; 
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 8px 14px;
  position: relative !important;
  width: 170px !important;
  transition: all 0.3s ease;
}

.search-box:hover, 
.search-box:focus-within, 
.search-box.active {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6) !important;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 120px !important;
  color: var(--text-color);
}

.search-box i {
  cursor: pointer;
  font-size: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.search-box i:hover {
  color: var(--accent-gold);
}

.search-results-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 180px !important;
  background-color: var(--bg-color, #ffffff) !important;
  border: 1px solid var(--accent-gold, #d4af37) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  display: none !important;
  z-index: 99999 !important;
  padding: 6px 0 !important;
}

.search-results-dropdown.active {
  display: block !important;
}

.search-dropdown-item {
  display: block !important;
  padding: 10px 15px !important;
  color: var(--text-color, #333333) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.15) !important;
  color: var(--accent-gold) !important;
}

.nav-icon-link {
  position: relative;
  font-size: 20px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.nav-icon-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6)); /* Icons par glow */
}

.nav-icon-link .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-gold);
  color: var(--bg-color);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
}

.auth-btn {
  margin-left: 10px; 
  background-color: var(--accent-gold);
  color: var(--bg-color);
  padding: 9px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid var(--accent-gold); 
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  background-color: transparent;
  color: var(--accent-gold); 
  border-color: var(--accent-gold); 
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.7), 0 4px 15px rgba(212, 175, 55, 0.4); 
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  margin-left: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-links.mobile-active {
    display: flex !important;
  }

  .hamburger {
    display: block;
  }
}



/* Wishlist Collection */
body {
    background-color: #000000 !important;
    margin: 0;
    padding: 0;
}


.shop-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000;
}

.shop-container {
    width: 100%;
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease forwards;
}

.shop-title {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.shop-desc {
    color: #aaaaaa;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}


.product-card {
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35), 0 0 50px rgba(212, 175, 55, 0.15);
    
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}


.product-card:nth-child(1)  { animation-delay: 0.9s; }
.product-card:nth-child(2)  { animation-delay: 1.1s; }
.product-card:nth-child(3)  { animation-delay: 1.3s; }
.product-card:nth-child(4)  { animation-delay: 1.5s; }
.product-card:nth-child(5)  { animation-delay: 1.7s; }
.product-card:nth-child(6)  { animation-delay: 1.9s; }
.product-card:nth-child(7)  { animation-delay: 2.1s; }
.product-card:nth-child(8)  { animation-delay: 2.3s; }
.product-card:nth-child(9)  { animation-delay: 2.5s; }
.product-card:nth-child(10) { animation-delay: 2.7s; }
.product-card:nth-child(11) { animation-delay: 2.9s; }
.product-card:nth-child(12) { animation-delay: 3.1s; }
.product-card:nth-child(13) { animation-delay: 3.3s; }
.product-card:nth-child(14) { animation-delay: 3.5s; }
.product-card:nth-child(15) { animation-delay: 3.7s; }

.product-card:hover {
    border-color: #d4af37;
    transform: translateY(-7px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.6), 0 0 70px rgba(212, 175, 55, 0.3);
}


.watchlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #ff3b30;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.watchlist-btn:hover {
    background: #d4af37;
    color: #ff3b30 !important;
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.product-image-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #141414;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.06);
}

.product-details {
    padding: 20px;
    background: #0d0d0d;
}

.product-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #d4af37;
    color: #000000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Fade In Up Keyframes Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/*LUXURY FOOTER SECTION */
.luxury-footer {
    position: relative;
    background: #0d0c0a;
    color: #ffffff;
    padding: 80px 0 35px 0;
    overflow: hidden;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    width: 100%;
}

.footer-glow-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.footer-glow-1 { top: -100px; left: -50px; }
.footer-glow-2 { bottom: -100px; right: -50px; }

.footer-container {
    position: relative;
    z-index: 5;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.8), 0 0 25px rgba(184, 134, 11, 0.4);
}

.footer-logo:hover {
    color: #b8860b;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(184, 134, 11, 1), 0 0 35px rgba(184, 134, 11, 0.7);
}

.interactive-text {
    font-size: 14.5px;
    color: #b5b5b5;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.interactive-text:hover {
    color: #dcdcdc;
}


.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.social-icon-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.9);
    border-color: #ffffff;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    cursor: default;
    transition: color 0.3s ease;
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.6);
}

.footer-heading:hover {
    color: #b8860b;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: #b8860b;
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.8);
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 50px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-interactive-link {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-interactive-link span {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-interactive-link:hover {
    color: #b8860b;
}

.footer-interactive-link:hover span {
    transform: translateX(8px);
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.8);
}

.contact-links-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    font-size: 14.5px;
    color: #b5b5b5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-item span {
    transition: transform 0.3s ease;
}

.contact-item i {
    color: #b8860b;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-item:hover {
    color: #b8860b;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.6);
}

.contact-item:hover span {
    transform: translateX(6px);
}

.contact-item:hover i {
    transform: scale(1.25) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.9));
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
}

.footer-input-effect {
    width: 100%;
    padding: 12px 15px;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-input-effect:focus {
    border-color: #b8860b;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.6);
}

.footer-btn-effect {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: #b8860b;
    color: #000000;
    border: none;
    padding: 0 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.footer-input-effect:focus ~ .footer-btn-effect {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(184, 134, 11, 0.5);
}

.footer-btn-effect:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    cursor: default;
}

.copyright-text {
    font-size: 15.5px;
    font-weight: 500;
    color: #a0a0a0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-bottom:hover .copyright-text {
    color: #b8860b;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
}

.luxury-footer .footer-animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-footer.animate-footer .footer-animate-item {
    opacity: 1;
    transform: translateY(0);
}

.luxury-footer.animate-footer .footer-col:nth-child(1) { transition-delay: 0.1s; }
.luxury-footer.animate-footer .footer-col:nth-child(2) { transition-delay: 0.25s; }
.luxury-footer.animate-footer .footer-col:nth-child(3) { transition-delay: 0.4s; }
.luxury-footer.animate-footer .footer-col:nth-child(4) { transition-delay: 0.55s; }
.luxury-footer.animate-footer .footer-bottom { transition-delay: 0.7s; }

/* Responsive Design */
@media screen and (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .luxury-footer {
        padding: 50px 0 20px 0;
    }
}



/*LUXURY RIGHT-SIDE FLOATING BAR CSS */
.luxury-floating-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-action-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(18, 17, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(184, 134, 11, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-action-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 134, 11, 0.9);
}

.float-action-btn i {
    transition: transform 0.3s ease;
}

.float-action-btn:hover i {
    transform: scale(1.15);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(18, 17, 15, 0.95);
    color: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.5);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(184, 134, 11, 0.8);
}

.float-action-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    .luxury-floating-sidebar {
        right: 12px;
        gap: 10px;
    }
    .float-action-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .float-tooltip {
        display: none;
    }
}