/* ===== BlessingBliss - Brass Amulets E-Commerce ===== */

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

:root {
  --bg-dark: #0d0b08;
  --bg-card: #1a1714;
  --bg-elevated: #242019;
  --gold: #c9a227;
  --gold-light: #e0c050;
  --gold-dark: #9a7d1a;
  --brass: #b08d57;
  --brass-dark: #8b7355;
  --text-primary: #f0ebe0;
  --text-secondary: #a8a095;
  --text-muted: #6b6358;
  --border: rgba(201, 162, 39, 0.15);
  --border-hover: rgba(201, 162, 39, 0.4);
  --success: #5a8a3a;
  --danger: #c0392b;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.15);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 11, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(13, 11, 8, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav a:hover {
  color: var(--gold);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.cart-btn:hover {
  color: var(--gold);
}

.cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.5rem;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1714 0%, #0d0b08 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.hero-symbol {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  opacity: 0.8;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--brass));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-full {
  width: 100%;
}

/* ===== Section Headers ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .accent {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, #1a1714 0%, #0d0b08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition);
  filter: drop-shadow(0 4px 20px rgba(201, 162, 39, 0.15));
}

.product-card:hover .product-image img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 30px rgba(201, 162, 39, 0.3));
}

.product-image svg {
  width: 60%;
  height: 60%;
  transition: var(--transition);
}

.product-card:hover .product-image svg {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

.product-price .old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}

.add-to-cart-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.add-to-cart-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== Features Section ===== */
.features {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== Product Detail ===== */
.breadcrumb {
  padding: 100px 0 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 8px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
}

.product-detail-image {
  background: linear-gradient(135deg, #2a2520, #1a1714);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-detail-image svg {
  width: 70%;
  height: 70%;
}

.product-detail-info h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.product-detail-info .price {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-detail-info .description {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.product-options {
  margin-bottom: 28px;
}

.option-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.option-choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.option-choice {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
  background: var(--bg-elevated);
}

.option-choice:hover {
  border-color: var(--border-hover);
  color: var(--gold);
}

.option-choice.active {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: var(--bg-card);
}

.quantity-input {
  width: 50px;
  height: 40px;
  text-align: center;
  background: var(--bg-dark);
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.product-meta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.meta-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.meta-item .label {
  color: var(--text-muted);
  min-width: 100px;
}

.meta-item .value {
  color: var(--text-secondary);
}

/* ===== Customization Page ===== */
.customize-page {
  padding-top: 100px;
}

.customize-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.preview-panel {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.preview-card {
  background: linear-gradient(135deg, #2a2520, #1a1714);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
}

.preview-amulet {
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
  position: relative;
}

.preview-amulet svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.2));
}

.preview-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 16px;
}

.customize-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.customize-group h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.customize-group h3 .step-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.shape-options,
.symbol-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shape-option,
.symbol-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.shape-option:hover,
.symbol-option:hover {
  border-color: var(--border-hover);
}

.shape-option.active,
.symbol-option.active {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.05);
}

.shape-option svg,
.symbol-option svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  color: var(--brass);
}

.shape-option .name,
.symbol-option .name {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.shape-option.active .name,
.symbol-option.active .name {
  color: var(--gold);
}

.text-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  transition: var(--transition);
}

.text-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elevated);
}

.text-input::placeholder {
  color: var(--text-muted);
}

.char-counter {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

.finish-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.finish-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.finish-option.active {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.05);
}

.finish-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 8px;
  border: 2px solid var(--border);
}

.finish-polished { background: linear-gradient(135deg, #e0c050, #c9a227); }
.finish-antique { background: linear-gradient(135deg, #8b7355, #6b5840); }
.finish-dark { background: linear-gradient(135deg, #4a4030, #2a2520); }

.finish-option .name {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.finish-option.active .name {
  color: var(--gold);
}

.customize-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
  border-bottom: none;
  padding-top: 16px;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== Cart Page ===== */
.cart-page {
  padding-top: 100px;
  min-height: 80vh;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  align-items: center;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2a2520, #1a1714);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image svg {
  width: 60%;
  height: 60%;
}

.cart-item-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.cart-item-info .variant {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-info .item-price {
  color: var(--gold);
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.remove-btn:hover {
  color: var(--danger);
}

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.summary-total {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: var(--text-muted);
  opacity: 0.5;
}

.empty-cart h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.empty-cart p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ===== About Page ===== */
.about-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 60px 0;
}

.value-card {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.value-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== Contact Page ===== */
.contact-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail .value {
  color: var(--text-primary);
  font-size: 1rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--gold);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.toast .msg {
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ===== Animations ===== */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .customize-layout { grid-template-columns: 1fr; }
  .preview-panel { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .shape-options, .symbol-options { grid-template-columns: repeat(2, 1fr); }
  .finish-options { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
}

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 8px 0;
}

.mobile-nav a:hover {
  color: var(--gold);
}
