
:root {
  --gold: #c9a44a;
  --gold-light: #a17a28;
  --gold-dark: #8b6914;
  --cream: #f9f4ec;
  --bg: #ffffff;
  --fg: #1a1a1a;
  --card: #ffffff;
  --muted: #666666;
  --border: #e6d9c0;
  --accent-bg: #f9f4ec;
  --secondary-bg: #f5f5f5;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
}

.font-display {
  font-family: 'Cormorant Garamond', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: 'Jost', sans-serif;
}

input,
textarea,
select {
  font-family: 'Jost', sans-serif;
}

#splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 100vh;
  background: #fff;

  position: fixed;
  inset: 0;
  z-index: 999;

  animation: splashOut 0.8s ease 2.5s forwards;
}

@keyframes splashOut {
  to {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
  }
}

.splash-gem {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;

  animation: logoZoom 1.2s ease-in-out infinite alternate;
}

@keyframes logoZoom {
  from {
    transform: scale(1);
    opacity: 0.9;
  }

  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

.splash-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 3px;
}

.splash-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.splash-tagline {
  margin-top: 10px;
  font-size: 15px;
  color: #555;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.header-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-dark);
}

.header-logo-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  color: var(--gold-dark);
  border-color: var(--border);
  background: rgba(201, 164, 74, 0.08);
}

.nav .btn-signin {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
}

.nav .btn-signin:hover {
  background: var(--gold-dark);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
  z-index: 50;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--muted);
}

.mobile-nav a:hover {
  color: var(--gold-dark);
  background: rgba(201, 164, 74, 0.08);
}

.mobile-nav .btn-signin {
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}


.welcome-section{
  padding:70px 20px;
  background:#faf8f4;
}

.welcome-container{
  /* max-width:1100px; */
  margin:auto;
  /* background:#fff; */
  border-radius:18px;
  padding:50px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  border:1px solid #eee;
}

.welcome-title{
  font-size:42px;
  margin:12px 0 25px;
  color:#222;
  font-family:'Cormorant Garamond', serif;
}

.welcome-container p{
  color:#666;
  font-size:16px;
  line-height:1.9;
  margin-bottom:18px;
  text-align:justify;
}

.welcome-highlight{
  margin-top:35px;
  padding:25px;
  text-align:center;
  background:linear-gradient(135deg,#d4af37,#b8860b);
  border-radius:14px;
  color:#fff;
}

.welcome-highlight h3{
  margin:0;
  font-size:28px;
  font-family:'Cormorant Garamond', serif;
}

.welcome-highlight span{
  display:block;
  margin-top:10px;
  font-size:16px;
  opacity:.95;
}

@media(max-width:768px){

  .welcome-section{
      padding:40px 15px;
  }

  .welcome-container{
      padding:25px;
  }

  .welcome-title{
      font-size:30px;
  }

  .welcome-container p{
      font-size:15px;
      line-height:1.8;
  }

  .welcome-highlight h3{
      font-size:22px;
  }
}
/* Page sections */
.page {
  display: none;
}

.page.active {
  display: block;
}

.banner{
  position:relative;
  width:100%;

  /* max-width:1600px; */
  /* margin:20px auto; */
  /* border-radius:18px; */
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  cursor:pointer;
}

.banner-slides{
  display:flex;
  transition:transform .6s ease;
}

.banner-slide{
  min-width:100%;
  flex-shrink:0;
}

.banner-slide img{
  width:100%;
  height:700px;
  display:block;
  object-fit:fill;
}

.banner-dots{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.banner-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
}

.banner-dot.active{
  background:#d4af37;
}

/* Tablet */
@media (max-width:992px){
  .banner-slide img{
      height:350px;
  }
}

/* Mobile */
@media (max-width:768px){
  .banner{
      margin:10px;
      border-radius:12px;
  }

  .banner-slide img{
      height:180px;
      object-fit:cover;
  }

  .banner-dots{
      bottom:10px;
  }

  .banner-dot{
      width:8px;
      height:8px;
  }
}

/* Section header */
.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
}

.section-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
}

.section-desc {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

/* Quick Access */
.quick-access {
  padding: 64px 80px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 0;
}

.quick-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.quick-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: var(--accent-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.quick-card .label {
  font-size: 14px;
  font-weight: 500;
}

.quick-card .sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Quote Section */
.quote-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 80px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.upload-area {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--card);
  margin-bottom: 20px;
}

.upload-area:hover {
  border-color: var(--gold);
  background: var(--accent-bg);
}

.upload-area .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.upload-area .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.upload-area .desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.upload-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.upload-chip {
  background: rgba(201, 164, 74, 0.1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gold-dark);
}

.design-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.design-slot {
  aspect-ratio: 1;
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--card);
  font-size: 24px;
  color: var(--muted);
  flex-direction: column;
}

.design-slot:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.design-slot small {
  font-size: 10px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

.form-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--gold);
}

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

.action-option {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--card);
  margin-bottom: 10px;
}

.action-option:hover,
.action-option.selected {
  border-color: var(--gold);
  background: var(--accent-bg);
}

.action-option .info .title {
  font-size: 14px;
  font-weight: 500;
}

.action-option .info .sub {
  font-size: 12px;
  color: var(--muted);
}

.action-option .price {
  margin-left: auto;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 500;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.summary-row .label {
  color: var(--muted);
}

.summary-row .value {
  font-weight: 500;
}

.coupon-row {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.coupon-row input {
  flex: 1;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.total-row .label {
  font-size: 16px;
  font-weight: 500;
}

.total-row .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-dark);
}

.btn-full {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
}

/* Gallery */
.page-header {
  background: linear-gradient(135deg, #fff8ee, #fdf0d5);
  border-bottom: 1px solid var(--border);
  padding: 48px 80px;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-filters input {
  flex: 1;
  min-width: 240px;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
  background: var(--card);
  color: var(--muted);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--accent-bg);
}

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

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-card .thumb {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
}

.gallery-card .cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.gallery-card .info {
  padding: 16px;
}

.gallery-card .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

.gallery-card .desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.gallery-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-card .price {
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 500;
}

/* Chat */
.chat-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: calc(100vh - 70px);
}

.chat-sidebar {
  background: var(--cream);
  border-right: 1px solid var(--border);
  padding: 20px;
  overflow-y: auto;
}

.chat-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 20px;
}

.plan-card {
  background: linear-gradient(135deg, rgba(201, 164, 74, 0.1), rgba(201, 164, 74, 0.04));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.plan-card.premium {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 164, 74, 0.15), rgba(201, 164, 74, 0.06));
}

.plan-card .badge {
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.plan-card .name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.plan-card .price {
  font-size: 20px;
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

.plan-card .price span {
  font-size: 14px;
  color: var(--muted);
}

.plan-card button {
  width: 100%;
}

.advisor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.advisor-card:hover,
.advisor-card.active {
  border-color: var(--gold);
}

.advisor-card .top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.advisor-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.advisor-card .name {
  font-size: 14px;
  font-weight: 500;
}

.advisor-card .status {
  font-size: 11px;
  color: #22c55e;
}

.advisor-card .role {
  font-size: 12px;
  color: var(--gold-dark);
  margin-top: 8px;
}

.chat-main {
  display: flex;
  flex-direction: column;
  background: var(--card);
}

.chat-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-messages {
  flex: 1;
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(249, 244, 236, 0.5);
}

.msg {
  max-width: 60%;
}

.msg.incoming {
  align-self: flex-start;
}

.msg.outgoing {
  align-self: flex-end;
}

.msg .bubble {
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.msg.incoming .bubble {
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.msg.outgoing .bubble {
  background: rgba(201, 164, 74, 0.12);
  border: 1px solid rgba(201, 164, 74, 0.3);
  border-bottom-right-radius: 4px;
  color: var(--gold-dark);
}

.msg .time {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  padding: 0 4px;
}

.msg.outgoing .time {
  text-align: right;
}

.chat-input {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-input input {
  flex: 1;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

.chat-input input:focus {
  border-color: var(--gold);
}

.chat-input button {
  background: var(--gold);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.chat-input button:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

/* Learn / Support sub-nav (shared tab-bar look) */
.learn-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 80px;
  background: var(--card);
  flex-wrap: wrap;
}

.learn-tab {
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  color: var(--muted);
  display: inline-block;
}

.learn-tab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.content-area {
  padding: 64px 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-card .thumb {
  aspect-ratio: 16/9;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.blog-card .body {
  padding: 20px;
}

.blog-card .cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.blog-card .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.blog-card .excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

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

.style-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.style-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.style-card .thumb {
  aspect-ratio: 3/4;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.style-card .label {
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}



/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  margin-bottom: 4px;
}

.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--accent-bg);
}

.faq-q .toggle {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.2s;
}

.faq-q .toggle.open {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  display: none;
}

.faq-a.open {
  display: block;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.support-card:hover {
  border-color: var(--gold);
}

.support-card .icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.support-card .title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.support-card .sub {
  font-size: 12px;
  color: var(--muted);
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 24px;
}

.policy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.policy-link {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.policy-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--accent-bg);
}

/* Auth */
.auth-wrapper {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--cream);
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.auth-card .logo-area {
  text-align: center;
  margin-bottom: 36px;
}

.auth-card .logo-area img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.auth-card .logo-area h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
}

.auth-card .logo-area p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  color: var(--muted);
}

.auth-tab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  position: relative;
  z-index: 1;
  background: var(--card);
  padding: 0 12px;
}

.social-btns {
  display: flex;
  gap: 10px;
}

.social-btn {
  flex: 1;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-inputs input {
  width: 48px;
  height: 52px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
}

.otp-inputs input:focus {
  border-color: var(--gold);
}

/* Legal pages */
.legal-content {
  padding: 64px 80px;
  max-width: 880px;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.legal-card h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--gold-dark);
}

.legal-card a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 64px 80px 32px;
}

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

.footer .brand-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 260px;
}

.footer .store-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer .store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  transition: all 0.2s;
  cursor: pointer;
}

.footer .store-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer .store-btn .icon {
  font-size: 24px;
}

.footer .store-btn small {
  font-size: 10px;
  color: var(--muted);
  display: block;
}

.footer .store-btn .name {
  font-size: 14px;
  font-weight: 500;
}

.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 74, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  background: var(--bg);
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}


.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.modal-overlay.show{
  display:flex;
}

.modal-box{
  background:#fff;
  width:400px;
  max-width:90%;
  padding:30px;
  border-radius:12px;
  position:relative;
  text-align:center;
}

.modal-close{
  position:absolute;
  top:10px;
  right:10px;
  border:none;
  background:none;
  font-size:22px;
  cursor:pointer;
}




  .modal-overlay{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.55);
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      visibility:hidden;
      transition:.3s;
      z-index:9999;
  }






  .modal-overlay.show{
      opacity:1;
      visibility:visible;
  }

  .modal-box{
      background:#fff;
      width:420px;
      max-width:90%;
      border-radius:16px;
      padding:35px;
      position:relative;
      text-align:center;
      transform:scale(.9);
      transition:.3s;
  }

  .modal-overlay.show .modal-box{
      transform:scale(1);
  }

  .modal-close{
      position:absolute;
      top:12px;
      right:12px;
      width:36px;
      height:36px;
      border:none;
      background:#f5f5f5;
      border-radius:50%;
      cursor:pointer;
      font-size:18px;
  }
  .btn-download{
      background: linear-gradient(135deg,#d4af37,#b8860b);
      color:#fff !important;
      padding:10px 18px;
      border-radius:8px;
      font-size:13px;
      font-weight:600;
      text-decoration:none;
      transition:.3s;
      display:flex;
      align-items:center;
      gap:6px;
  }
  
  .btn-download:hover{
      background: linear-gradient(135deg,#b8860b,#8c6a09);
      transform:translateY(-2px);
      box-shadow:0 6px 15px rgba(212,175,55,.35);
  }
  .modal-store-row{
      display:flex;
      justify-content:center;
      gap:18px;
      margin-top:25px;
      flex-wrap:wrap;
  }
  
  .store-badge{
      height:60px;
      width:auto;
      transition:.3s;
      cursor:pointer;
  }
  
  .store-badge:hover{
      transform:scale(1.05);
  }
/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-card .icon {
  font-size: 60px;
  margin-bottom: 16px;
}

.modal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-bottom: 8px;
}

.modal-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .chat-layout {
    grid-template-columns: 1fr;
  }

  .chat-sidebar {
    display: none;
  }

  .quick-access,
  .quote-section,
  .content-area,
  .legal-content,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header {
    padding: 32px 20px;
  }

  .learn-tabs {
    padding: 0 20px;
  }

  .banner-slide {
    padding: 0 20px;
  }

  .banner-title {
    font-size: 32px;
  }

  .gallery-filters input {
    min-width: 100%;
  }
}

@font-face {
  font-family: 'CameraPlainVariable';
  src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

#lovable-badge {
  --badge-bg: #1b1b1b;
  --badge-text: #c5c1b9;
  --badge-text-hover: #dcdad5;
  --badge-radius: 6px;
  --badge-padding: 8px;
  --badge-gap: 6px;
  --badge-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.88),
    0 1px 0 0 rgba(0, 0, 0, 0.04),
    0 2px 2px -1px rgba(0, 0, 0, 0.08),
    0 4px 4px -2px rgba(0, 0, 0, 0.08),
    0 8px 8px -4px rgba(0, 0, 0, 0.08),
    0 16px 16px -8px rgba(0, 0, 0, 0.08);
  --badge-transition-duration: 0.2s;
  --badge-transition-easing: cubic-bezier(0.16, 1, 0.32, 1);
  --focus-color: #575ECF;
  --focus-offset: 2px;
  --focus-width: 2px;

  position: fixed;
  bottom: 12px;
  right: 12px;
  height: 24px;
  display: flex;
  align-items: center;
  z-index: 1000000;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  border-radius: var(--badge-radius);
  box-shadow: var(--badge-shadow);
  font-size: 12px;
  font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400 !important;
  text-transform: none !important;
  font-feature-settings: normal !important;
  transform: translateZ(0);
  will-change: transform, opacity;
}

#lovable-badge-cta {
  display: flex;
  align-items: center;
  gap: var(--badge-gap);
  padding: 0 var(--badge-padding);
  height: 100%;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--badge-radius) 0 0 var(--badge-radius);
  transition:
    background-color var(--badge-transition-duration) ease,
    color var(--badge-transition-duration) ease,
    transform 0.1s ease;
}

#lovable-badge-cta:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--badge-text-hover);
}

#lovable-badge-cta:active {
  transform: scale(0.98);
}

#lovable-badge-cta:focus {
  outline: none;
}

#lovable-badge-cta:focus-visible {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: var(--focus-offset);
  z-index: 1;
}

#lovable-badge-text {
  line-height: 1;
}

#lovable-badge-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

#lovable-badge-close {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--badge-radius) var(--badge-radius) 0;
  flex-shrink: 0;
  transition:
    background-color var(--badge-transition-duration) ease,
    transform 0.1s ease;
}

#lovable-badge-close:hover {
  background: rgba(255, 255, 255, 0.04);
}

#lovable-badge-close:active {
  transform: scale(0.92);
}

#lovable-badge-close:focus {
  outline: none;
}

#lovable-badge-close:focus-visible {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: calc(var(--focus-offset) * -1);
  z-index: 1;
}

#lovable-badge-close svg path {
  fill: var(--badge-text);
  transition: fill var(--badge-transition-duration) ease;
}

#lovable-badge-close:hover svg path {
  fill: var(--badge-text-hover);
}

@media (prefers-reduced-motion: reduce) {

  #lovable-badge-cta,
  #lovable-badge-close,
  #lovable-badge-close svg path {
    transition: none;
  }

  #lovable-badge-cta:active,
  #lovable-badge-close:active {
    transform: none;
  }
}

@media (prefers-contrast: high) {
  #lovable-badge {
    --badge-bg: #000;
    --badge-text: #fff;
    --badge-text-hover: #fff;
    border: 2px solid currentColor;
  }

  #lovable-badge-cta:focus-visible,
  #lovable-badge-close:focus-visible {
    outline-width: 3px;
  }
}
