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

:root {
  --color-creme: #FFF7F0;
  --color-grafite: #2B211D;
  --color-terracota: #E76F51;
  --color-terracota-dark: #D45B3E;
  --color-nude: #D8A7A7;
  --color-nude-light: rgba(216, 167, 167, 0.15);
  --color-champagne: #C9A86A;
  --color-white: #FFFFFF;
  --color-shadow: rgba(43, 33, 29, 0.06);
  --color-shadow-hover: rgba(43, 33, 29, 0.12);
  
  --font-family: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-creme);
  color: var(--color-grafite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Base Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background-color: rgba(246, 244, 242, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-nude-light);
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-grafite);
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--color-terracota);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-grafite);
  opacity: 0.85;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-terracota);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--color-terracota);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.15);
}

.btn-instagram:hover {
  background: linear-gradient(45deg, #e08423 0%, #d6582c 25%, #cc1733 50%, #bc1356 75%, #ac0878 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-grafite);
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-terracota-dark);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--color-grafite);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--color-grafite);
  color: var(--color-creme);
}

.btn-dark:hover {
  background-color: #44342d;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: radial-gradient(circle at top right, var(--color-nude-light), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-champagne);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-grafite);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-grafite);
  opacity: 0.8;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-nude);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--color-shadow);
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-img-box:hover img {
  transform: scale(1.05);
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(255, 247, 240, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--color-shadow);
  border: 1px solid var(--color-nude-light);
  display: flex;
  align-items: center;
  gap: 16px;
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
}

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-grafite);
}

.floating-text p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Sections Global */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-grafite);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  opacity: 0.75;
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.category-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--color-shadow);
  border-color: var(--color-nude);
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-nude-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-terracota);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background-color: var(--color-terracota);
  color: var(--color-white);
}

.category-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-grafite);
}

/* Products/Achados Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-nude-light);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--color-shadow-hover);
  border-color: var(--color-nude);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-creme);
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--color-grafite);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-badge.achado-do-dia {
  background-color: var(--color-terracota);
}

.product-badge.parece-caro {
  background-color: var(--color-champagne);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-nude);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-grafite);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.product-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 16px;
}

.price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-terracota);
}

/* Looks Prontos */
.looks-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.look-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--color-nude-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.look-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.look-main-img {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}

.look-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.look-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.look-thumb-img {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-creme);
}

.look-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.look-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.look-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-grafite);
}

.look-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About / Brand Intro Section */
.about-section {
  background-color: var(--color-nude-light);
  border-radius: 30px;
  padding: 60px 40px;
  margin: 40px auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--color-shadow);
  aspect-ratio: 16/10;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 16px;
}

.trust-icon {
  font-size: 2rem;
  color: var(--color-terracota);
  margin-bottom: 12px;
}

.trust-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* CTA Section */
.cta-box {
  background-color: var(--color-grafite);
  color: var(--color-creme);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background-color: rgba(231, 111, 81, 0.15);
  border-radius: 50%;
  filter: blur(50px);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* Footer */
.site-footer {
  background-color: var(--color-grafite);
  color: var(--color-creme);
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 247, 240, 0.05);
  margin-top: 80px;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--color-terracota);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 360px;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-champagne);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-terracota);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 247, 240, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.5;
  max-width: 800px;
  margin: 0 auto 16px auto;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Filter Bar & Pages */
.archive-header {
  padding: 40px 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--color-nude-light);
  margin-bottom: 40px;
}

.archive-title {
  font-size: 2rem;
  font-weight: 800;
}

.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.search-input {
  background-color: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--color-grafite);
  min-width: 250px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--color-terracota);
}

.filter-select {
  background-color: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--color-grafite);
  outline: none;
  cursor: pointer;
}

/* Admin Styles */
.admin-body {
  background-color: #fcfcfc;
}

.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-creme);
  padding: 24px;
}

.admin-login-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 15px 35px var(--color-shadow);
  border: 1px solid var(--color-nude-light);
  text-align: center;
}

.admin-login-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.admin-login-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background-color: var(--color-creme);
  border: 1px solid var(--color-nude-light);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--color-grafite);
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-terracota);
  background-color: var(--color-white);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-terracota);
  cursor: pointer;
}

.form-check label {
  font-size: 0.9rem;
  margin-bottom: 0;
  cursor: pointer;
}

.alert {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-danger {
  background-color: #fdf2f2;
  color: #c81e1e;
  border: 1px solid #fde8e8;
}

.alert-success {
  background-color: #f3faf7;
  color: #0e6245;
  border: 1px solid #def7ec;
}

/* Admin Dashboard Layout */
.admin-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background-color: var(--color-grafite);
  color: var(--color-creme);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 247, 240, 0.05);
}

.admin-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  padding-left: 10px;
}

.admin-logo span {
  color: var(--color-terracota);
}

.admin-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.75;
}

.admin-menu-link:hover, .admin-menu-link.active {
  opacity: 1;
  background-color: rgba(255, 247, 240, 0.08);
  color: var(--color-terracota);
}

.admin-menu-logout {
  margin-top: auto;
  border-top: 1px solid rgba(255, 247, 240, 0.1);
  padding-top: 20px;
}

.admin-content {
  padding: 40px;
  background-color: #faf9f8;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.admin-title {
  font-size: 1.8rem;
  font-weight: 800;
}

/* Stats Widgets */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--color-nude-light);
  box-shadow: 0 4px 15px var(--color-shadow);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-grafite);
  margin-top: 8px;
}

/* Admin Data Table */
.data-table-wrapper {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-nude-light);
  box-shadow: 0 4px 15px var(--color-shadow);
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  background-color: #f5f2ef;
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-grafite);
  border-bottom: 1px solid var(--color-nude-light);
}

.data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f9f7f5;
  font-size: 0.9rem;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.td-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background-color: var(--color-creme);
}

.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-status.active {
  background-color: #def7ec;
  color: #03543f;
}

.badge-status.inactive {
  background-color: #fde8e8;
  color: #9b1c1c;
}

.action-btns {
  display: flex;
  gap: 8px;
}

/* Modal Confirmation */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(43, 33, 29, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-icon {
  font-size: 2.5rem;
  color: var(--color-terracota);
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Image Upload Widget */
.upload-container {
  border: 2px dashed var(--color-nude);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  background-color: var(--color-creme);
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-container:hover {
  border-color: var(--color-terracota);
  background-color: var(--color-white);
}

.upload-icon {
  font-size: 2rem;
  color: var(--color-nude);
  margin-bottom: 10px;
}

.upload-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.upload-preview {
  margin-top: 15px;
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  display: none;
  object-fit: cover;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .admin-container {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    display: none; /* In a real app we'd add a toggle, let's keep it clean or make a header admin nav for mobile */
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-creme);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid var(--color-nude-light);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .archive-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .search-input {
    width: 100%;
  }
}
