@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #eb086d;       /* Noboni Magenta Pink */
  --primary-hover: #ce075f;
  --secondary-color: #333e48;
  /* Electro Charcoal Slate */
  --secondary-hover: #242c33;
  --text-color: #3f4e5a;
  --text-dark: #1b2228;
  --text-light: #7c8e9d;
  --bg-color: #f5f7f9;
  --bg-white: #ffffff;
  --border-color: #e5e9eb;
  --accent-color: #a3d133;
  /* Green Accent */
  --danger-color: #ea1e34;
  --rating-color: #ffd700;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 6px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

button {
  cursor: pointer;
  background: none;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Flex & Grid Utilities */
.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

/* Section Styling */
.section {
  padding: 40px 0;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 12px;
  gap: 15px;
}

.section-title > span {
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 90px;
  height: 2px;
  background-color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

/* Badge tags */
.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.badge-sale {
  background-color: var(--danger-color);
  color: var(--bg-white);
}

.badge-new {
  background-color: var(--accent-color);
  color: var(--bg-white);
}

/* Inputs & Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(51, 62, 72, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Header Navbar Live Indicator Dot */
.nav-gold-price-link {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.nav-live-dot-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 8px;
  height: 8px;
  margin-left: 2px;
}
.nav-live-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71; /* vibrant green */
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 4px rgba(46, 204, 113, 0.6);
}
.nav-live-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2ecc71;
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: pulse-nav-dot 1.8s infinite ease-in-out;
}
@keyframes pulse-nav-dot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}