: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)); 
}

.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;
  }
}





/* hero seciton */
.new-arrivals-hero {
    position: relative;
    width: 100%;
    height: 82vh; 
    min-height: 580px;
    background: url(images/newarrival-hero.avif) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    margin-top: 0;
    perspective: 1500px;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-arrivals-hero.hero-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    max-width: 850px;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(60px) rotateX(-20deg) scale(0.9);
    transition: opacity 1s ease 0.3s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.new-arrivals-hero.hero-active .hero-content-box {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}

.hero-tag {
    color: #f1c40f;
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(241, 196, 15, 0.5);
}

.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.4);
}

.hero-subtitle {
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.hero-primary-btn {
    display: inline-block;
    background: #b8860b;
    color: #ffffff;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-primary-btn:hover {
    background: #d4af37;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(184, 134, 11, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .new-arrivals-hero {
        height: 60vh;
        min-height: 450px;
    }
    .hero-main-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
}



/* filter button*/
.filter-section {
    padding: 70px 20px;
    background: #0b0b0b; 
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    perspective: 1200px;
}

.filter-heading-box {
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(40px) rotateX(-15deg);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-sub-tag {
    color: #b8860b;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
    text-shadow: 0 3px 10px rgba(184, 134, 11, 0.4);
}

.filter-main-heading {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-btn {
    position: relative;
    padding: 12px 28px;
    border: 1px solid rgba(184, 134, 11, 0.4);
    background: rgba(20, 20, 20, 0.8);
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) rotateX(-20deg) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.filter-section.filter-active .filter-heading-box {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.filter-section.filter-active .filter-btn {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}

.filter-section.filter-active .filter-btn:nth-child(1) { transition-delay: 0.2s; }
.filter-section.filter-active .filter-btn:nth-child(2) { transition-delay: 0.3s; }
.filter-section.filter-active .filter-btn:nth-child(3) { transition-delay: 0.4s; }
.filter-section.filter-active .filter-btn:nth-child(4) { transition-delay: 0.5s; }
.filter-section.filter-active .filter-btn:nth-child(5) { transition-delay: 0.6s; }

.filter-btn:hover {
    background: #b8860b;
    color: #ffffff;
    border-color: #b8860b;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(184, 134, 11, 0.5);
}

.filter-btn.active {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #ffffff;
    border-color: #d4af37;
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.6);
    transform: translateY(-3px);
}

/* cards */
.products-grid-section {
    padding: 70px 15px;
    background: #0b0b0b;
    width: 100%;
    perspective: 1500px;
}

.products-grid-section .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
    width: 100%;
}

.product-card {
    background: #141414;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(60px) rotateX(-15deg) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.products-grid-section.grid-active .product-card {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}

.products-grid-section.grid-active .product-card:nth-child(1) { transition-delay: 0.1s; }
.products-grid-section.grid-active .product-card:nth-child(2) { transition-delay: 0.2s; }
.products-grid-section.grid-active .product-card:nth-child(3) { transition-delay: 0.3s; }
.products-grid-section.grid-active .product-card:nth-child(4) { transition-delay: 0.4s; }
.products-grid-section.grid-active .product-card:nth-child(5) { transition-delay: 0.5s; }
.products-grid-section.grid-active .product-card:nth-child(6) { transition-delay: 0.6s; }
.products-grid-section.grid-active .product-card:nth-child(7) { transition-delay: 0.7s; }
.products-grid-section.grid-active .product-card:nth-child(8) { transition-delay: 0.8s; }

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #b8860b;
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.3);
}

.product-image-box {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-box img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b8860b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* WATCHLIST BUTTON STYLING */
.product-card .watchlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.product-card .watchlist-btn i {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.product-card .watchlist-btn:hover {
    background: rgba(184, 134, 11, 0.8);
    transform: scale(1.1);
}

/* Active State: Yellow Circle background + Red Solid Heart */
.product-card .watchlist-btn.active {
    background: #b8860b !important;
}

.product-card .watchlist-btn.active i {
    color: #ff3b30 !important;
}

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(184, 134, 11, 0.95);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.product-card:hover .quick-view-btn {
    bottom: 20px;
}

.quick-view-btn:hover {
    background: #d4af37;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-category {
    color: #b8860b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #f1c40f;
}

.original-price {
    font-size: 13px;
    color: #888888;
    text-decoration: line-through;
}



/* The Fabric & Craft Note Section */
.craft-note-section {
    padding: 120px 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(184, 134, 11, 0.25);
    border-bottom: 1px solid rgba(184, 134, 11, 0.25);
    perspective: 1600px;
    overflow: hidden;
}

.craft-container {
    max-width: 1200px;
    margin: 0 auto;
}

.craft-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.craft-content-box {
    opacity: 0;
    transform: translateY(40px) rotateX(-15deg);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-note-section.craft-active .craft-content-box,
.craft-note-section.craft-active .craft-image-wrapper {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.craft-badge-wrapper {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    margin-bottom: 18px;
}

.craft-sub-tag {
    color: #d4af37;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.craft-main-heading {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 
                 0 0 40px rgba(184, 134, 11, 0.3), 
                 0 5px 15px rgba(0, 0, 0, 0.9);
}

.craft-description {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.craft-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.craft-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #141414;
    border: 1px solid rgba(184, 134, 11, 0.15);
    padding: 20px 22px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.craft-feature-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: #1a1a1a;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.15);
}

.craft-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.craft-icon-box i {
    font-size: 18px;
    color: #d4af37;
}

.craft-feature-text h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.craft-feature-text p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.5;
}

.craft-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(50px) rotateY(15deg) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.craft-back-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 22px;
    z-index: 0;
    transition: all 0.6s ease;
}

.craft-image-wrapper:hover .craft-back-frame {
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-color: rgba(212, 175, 55, 0.7);
    transform: rotate(-1deg);
}

.primary-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    filter: blur(35px);
    pointer-events: none;
    animation: pulsePrimaryGlow 5s ease-in-out infinite alternate;
}

.secondary-glow {
    position: absolute;
    width: 60%;
    height: 60%0;
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
    z-index: 1;
    filter: blur(40px);
    pointer-events: none;
    animation: pulseSecondaryGlow 3s ease-in-out infinite alternate;
}

@keyframes pulsePrimaryGlow {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes pulseSecondaryGlow {
    0% { transform: scale(0.8) translate(-10px, -10px); opacity: 0.4; }
    100% { transform: scale(1.2) translate(10px, 10px); opacity: 0.8; }
}

.craft-image-box {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.25);
    transform: rotate(1.5deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.craft-image-wrapper:hover .craft-image-box {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.4);
}

.craft-image-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-image-box:hover img {
    transform: scale(1.08);
}

.craft-image-overlay-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid #d4af37;
    padding: 10px 22px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .craft-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .craft-image-box img {
        height: 400px;
    }
    .craft-image-box, .craft-image-wrapper:hover .craft-back-frame {
        transform: rotate(0deg);
    }
    .craft-back-frame {
        display: none;
    }
}

@media (max-width: 576px) {
    .craft-main-heading {
        font-size: 28px;
    }
    .craft-description {
        font-size: 14px;
    }
}




/* Complete The Look Section */
.complete-look-section {
    padding: 110px 20px;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    text-align: center;
    overflow: hidden;
    perspective: 1200px;
}

.look-container {
    max-width: 1200px;
    margin: 0 auto;
}

.look-header {
    margin-bottom: 50px;
}

.look-sub-tag {
    color: #d4af37;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.look-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.look-description {
    font-size: 15px;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.complete-look-section.look-active .look-sub-tag,
.complete-look-section.look-active .look-main-heading,
.complete-look-section.look-active .look-description {
    opacity: 1;
    transform: translateY(0);
}

.look-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.look-card {
    background: #141414;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    opacity: 0;
    transform: translateY(90px) rotateX(-15px) scale(0.92);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.35);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.look-grid .look-card:nth-child(1) { transition-delay: 0.7s; }
.look-grid .look-card:nth-child(2) { transition-delay: 0.9s; }
.look-grid .look-card:nth-child(3) { transition-delay: 1.1s; }

.complete-look-section.look-active .look-card {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}

.look-card:hover {
    transform: translateY(-15px) translateZ(50px) scale(1.04);
    border-color: #d4af37;
    box-shadow: 0 40px 75px rgba(0, 0, 0, 1), 
                0 0 55px rgba(212, 175, 55, 0.7);
}

.look-img-box {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.look-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.look-card:hover .look-img-box img {
    transform: scale(1.12);
}

.look-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid #d4af37;
    color: #d4af37;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.look-card .watchlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.look-card .watchlist-btn i {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.look-card .watchlist-btn:hover {
    background: rgba(184, 134, 11, 0.8);
    transform: scale(1.1);
}

.look-card .watchlist-btn.active {
    background: #b8860b !important;
}

.look-card .watchlist-btn.active i {
    color: #ff3b30 !important;
}

.look-info {
    padding: 24px;
}

.look-info h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.look-price {
    font-size: 16px;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 20px;
}

.look-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #d4af37;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.look-btn:hover {
    background: #d4af37;
    color: #0f0f0f;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}


.add-to-cart-btn.qty-control-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    background-color: #d4af37 !important;
    color: #111111 !important;
    border: 1px solid #d4af37;
}

.qty-btn {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #111111;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: rgba(0, 0, 0, 0.25);
}

.qty-display {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

@media (max-width: 768px) {
    .look-main-heading {
        font-size: 28px;
    }
}




/* new arrivals */
.new-arrivals-gallery {
    padding: 80px 10px;
    background: #ffffff;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    perspective: 1200px;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title, .section-subtitle {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800; 
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 500;
    transition-delay: 0.4s;
}

.arrival-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.arrival-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    overflow: hidden;
    position: relative; /* Watchlist button ke liye zaroori hai */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 
                0 0 20px rgba(212, 175, 55, 0.18);
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
    
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.new-arrivals-gallery.appear .section-title,
.new-arrivals-gallery.appear .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.new-arrivals-gallery.appear .arrival-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.new-arrivals-gallery.appear .arrival-card:nth-child(1) { transition-delay: 0.6s; }
.new-arrivals-gallery.appear .arrival-card:nth-child(2) { transition-delay: 0.75s; }
.new-arrivals-gallery.appear .arrival-card:nth-child(3) { transition-delay: 0.9s; }
.new-arrivals-gallery.appear .arrival-card:nth-child(4) { transition-delay: 1.05s; }
.new-arrivals-gallery.appear .arrival-card:nth-child(n+5) { transition-delay: 1.2s; }

.arrival-card:hover {
    transform: translateY(-12px) rotateX(4deg) rotateY(4deg) scale(1.02) !important;
    border-color: #d4af37;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1), 
                0 0 30px rgba(212, 175, 55, 0.45);
}

.arrival-card.clicked {
    transform: translateY(-18px) scale(1.04) rotateX(-5deg) rotateY(5deg) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 
                0 0 35px rgba(212, 175, 55, 0.6) !important;
    border-color: #d4af37 !important;
}

/* WATCHLIST BUTTON STYLING */
.arrival-card .watchlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.arrival-card .watchlist-btn i {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.arrival-card .watchlist-btn:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: scale(1.1);
}

.arrival-card .watchlist-btn.active {
    background: #b8860b !important;
}

.arrival-card .watchlist-btn.active i {
    color: #ff3b30 !important;
}

.arrival-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrival-card:hover img {
    transform: scale(1.1);
}

.arrival-card h4 {
    margin: 20px 20px 8px;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.arrival-card p {
    margin: 0 20px 24px;
    color: #d4af37;
    font-weight: 700;
    font-size: 16px;
}

/* Responsive Layout for Tablets and Mobiles */
@media (max-width: 992px) {
    .arrival-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .arrival-grid {
        grid-template-columns: 1fr;
    }
}




/*  newsletter seciton*/
.newsletter-section {
    padding: 130px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url(images/newsletter-newarrivals.avif) center center / cover no-repeat;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    perspective: 1200px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 
                0 0 40px rgba(212, 175, 55, 0.3);
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s ease, 
                border-color 0.5s ease, 
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-section.appear .newsletter-container {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.newsletter-section.appear .newsletter-container:hover {
    transform: translateY(-12px) scale(1.02) rotateX(4deg) rotateY(-2deg);
    border-color: #d4af37;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), 
                0 0 55px rgba(212, 175, 55, 0.5);
    animation: cardHoverFloat 2.5s ease-in-out infinite alternate;
}

@keyframes cardHoverFloat {
    0% {
        transform: translateY(-12px) scale(1.02) rotateX(4deg) rotateY(-2deg);
    }
    50% {
        transform: translateY(-18px) scale(1.03) rotateX(2deg) rotateY(2deg);
    }
    100% {
        transform: translateY(-10px) scale(1.02) rotateX(5deg) rotateY(-1deg);
    }
}

.newsletter-tag, 
.newsletter-title, 
.newsletter-desc, 
.newsletter-form {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-section.appear .newsletter-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.newsletter-section.appear .newsletter-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.newsletter-section.appear .newsletter-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.newsletter-section.appear .newsletter-form {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.newsletter-tag {
    color: #b89728;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.newsletter-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.newsletter-desc {
    color: #444444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.newsletter-form .input-wrapper {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form .input-wrapper:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.4);
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #777777;
}

.newsletter-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-btn:hover {
    background: #d4af37;
    color: #0f0f0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.success-message {
    margin-top: 20px;
    color: #27ae60;
    font-weight: 600;
    font-size: 16px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive design */
@media (max-width: 768px) {
    .newsletter-container {
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.85);
    }
    .newsletter-title {
        font-size: 26px;
    }
    .newsletter-form .input-wrapper {
        flex-direction: column;
        border-radius: 16px;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 15px;
    }
    .newsletter-form input {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(212, 175, 55, 0.7);
        border-radius: 30px;
    }
    .newsletter-btn {
        width: 100%;
        border-radius: 30px;
    }
}



/*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;
    align-items: center;
    position: relative;
    width: 100%;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 10px;
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.newsletter-form:focus-within {
    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-input-effect {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.footer-input-effect::placeholder {
    color: #888888;
}

.footer-btn-effect {
    background: #b8860b;
    color: #000000;
    border: none;
    width: 42px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.footer-btn-effect:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 15px 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;
    }
}

