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

:root {
  --color-creme: #FAF7FC; /* Off-white with soft lavender touch */
  --color-grafite: #230725; /* Dark plum-gray */
  --color-terracota: #4A0E4E; /* Plum / Deep purple */
  --color-terracota-dark: #330737; /* Darker plum */
  --color-nude: #C79427; /* Accent gold */
  --color-nude-light: rgba(74, 14, 78, 0.08); /* Soft primary tint */
  --color-champagne: #C79427; /* Gold accent */
  --color-white: #FFFFFF;
  --color-shadow: rgba(35, 7, 37, 0.06);
  --color-shadow-hover: rgba(35, 7, 37, 0.12);
  
  --font-family: 'Montserrat', sans-serif;
  --font-display: 'Cormorant Garamond', 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;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-creme);
}
::-webkit-scrollbar-thumb {
  background: rgba(74, 14, 78, 0.4); /* var(--color-terracota) with opacity */
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracota);
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .look-title, .product-detail-info h1, .footer-brand h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

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: #ffffff;
  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: 115px;
}

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

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

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

.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;
  flex-wrap: wrap;
}

.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-badge.desconto {
  background-color: #2e7d32;
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.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;
  line-height: 1.4;
}

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

.product-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px 0;
}

.product-signals span {
  background: var(--color-creme);
  border: 1px solid var(--color-nude-light);
  border-radius: 999px;
  color: var(--color-grafite);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
}

.collection-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 18px 0;
  margin: 0 0 28px 0;
  scrollbar-width: thin;
}

.collection-tab {
  flex: 0 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 999px;
  color: var(--color-grafite);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 16px;
}

.collection-tab:hover,
.collection-tab.active {
  background: var(--color-terracota);
  border-color: var(--color-terracota);
  color: var(--color-white);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.product-detail-media {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  background: var(--color-white);
  border: 1px solid var(--color-nude-light);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 120px;
}

.product-detail-info h1 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 14px;
}

.product-detail-lead {
  font-size: 1rem;
  opacity: 0.82;
  margin-bottom: 18px;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.whatsapp-join-box {
  margin-top: 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 4px;
}

.whatsapp-join-box strong {
  color: #166534;
}

.whatsapp-join-box span {
  font-size: 0.86rem;
  opacity: 0.78;
}

.whatsapp-join-box a {
  color: #128c4a;
  font-weight: 800;
  margin-top: 4px;
}

.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 */
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-info {
    position: static;
  }
}

@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%;
  }

  .product-detail-info {
    padding: 20px;
  }

  .product-detail-info h1 {
    font-size: 1.55rem;
  }

  .product-detail-actions {
    grid-template-columns: 1fr;
  }
}

/* Badge do Botão Ver Vídeo nos Produtos */
.product-video-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-grafite);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(43, 33, 29, 0.12);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}

.product-video-badge i {
  color: var(--color-terracota);
  margin-right: 6px;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.product-video-badge:hover {
  background: var(--color-terracota);
  color: var(--color-white);
  border-color: var(--color-terracota);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(231, 111, 81, 0.3);
}

.product-video-badge:hover i {
  color: var(--color-white);
  transform: scale(1.2);
}

/* Link "Ler mais" */
.read-more-link {
  color: var(--color-terracota);
  font-weight: 600;
  margin-left: 4px;
  display: inline-block;
  transition: color 0.2s ease;
}

.read-more-link:hover {
  color: var(--color-terracota-dark);
  text-decoration: underline;
}

/* Lupinha de Zoom nos Cards de Produtos */
.product-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-grafite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(43, 33, 29, 0.12);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}

.product-zoom-btn i {
  color: var(--color-terracota);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.product-zoom-btn:hover {
  background: var(--color-terracota);
  color: var(--color-white);
  border-color: var(--color-terracota);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(231, 111, 81, 0.3);
}

.product-zoom-btn:hover i {
  color: var(--color-white);
  transform: scale(1.2);
}

/* Estilos de Modais (Vídeo e Zoom de Imagem) */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.video-modal-card {
  position: relative;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal-overlay.open .video-modal-card {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.2s ease;
}

.video-modal-close:hover {
  background: var(--color-terracota, #E76F51);
  border-color: var(--color-terracota, #E76F51);
  transform: rotate(90deg);
}

.video-modal-body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .video-modal-card {
    width: 92%;
    max-width: 340px;
  }
}

/* --- CRO - Stories / Reels Section --- */
.stories-section {
  padding: 24px 0 10px 0;
  background: transparent;
  margin-bottom: 15px;
}

.stories-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px;
  scrollbar-width: none; /* Firefox */
}

.stories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.story-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
  width: 76px;
  flex-shrink: 0;
}

.story-img-container {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  border: 2.5px solid var(--color-terracota);
  background: var(--color-white);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-circle:hover .story-img-container {
  transform: scale(1.08);
}

.story-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.story-play-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--color-terracota);
  color: var(--color-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.story-name {
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 6px;
  color: var(--color-grafite);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* --- CRO - TikTok / vertical video player Overlay --- */
.tiktok-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tiktok-overlay.open {
  display: flex;
  opacity: 1;
}

.tiktok-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 92%;
  max-height: 820px;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 576px) {
  .tiktok-container {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
  }
}

.tiktok-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
}

.tiktok-close:hover {
  background: var(--color-terracota);
  border-color: var(--color-terracota);
  transform: rotate(90deg);
}

.tiktok-sidebar-actions {
  position: absolute;
  right: 16px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
  align-items: center;
}

.tiktok-action-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all 0.2s ease;
}

.tiktok-action-btn:hover {
  background: var(--color-terracota);
  border-color: var(--color-terracota);
  transform: scale(1.08);
}

.tiktok-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
  color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tiktok-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.tiktok-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  color: #eee;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.tiktok-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--color-terracota);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.45);
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.tiktok-buy-btn:hover {
  background: #e05e3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.6);
}

/* --- CRO - Urgency Tags and Share actions on product card --- */
.urgency-badge-box {
  margin: 8px 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-terracota);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff6f4;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #ffe8e2;
  width: fit-content;
}

.product-actions-row {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  margin-top: 14px;
}

.btn-whatsapp-share {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
  outline: none;
}

.btn-whatsapp-share:hover {
  background: #128c4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-share i {
  font-size: 1.15rem;
}

/* --- Reels/TikTok Navigation & Interaction --- */
.tiktok-nav-zone-left {
  position: absolute;
  top: 80px;
  left: 0;
  width: 40%;
  height: 60%;
  z-index: 5;
  cursor: pointer;
}

.tiktok-nav-zone-right {
  position: absolute;
  top: 80px;
  right: 0;
  width: 60%;
  height: 60%;
  z-index: 5;
  cursor: pointer;
}

.tiktok-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10005;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.tiktok-arrow:hover {
  background: var(--color-terracota);
  border-color: var(--color-terracota);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
}

.tiktok-arrow-left {
  left: calc(50% - 210px - 70px);
}

.tiktok-arrow-right {
  right: calc(50% - 210px - 70px);
}

@media (max-width: 992px) {
  .tiktok-arrow-left {
    left: 20px;
  }
  .tiktok-arrow-right {
    right: 20px;
  }
}

@media (max-width: 860px) {
  .tiktok-arrow {
    display: none; /* Hide arrows on small screens, use tap navigation */
  }
}

/* ==========================================================================
   MELHORIAS VISUAIS PREMIUM (Rebranding Achadinhos da Reis)
   ========================================================================== */

/* 1. Scrolling Ticker (Slogans Rotativos) */
.slogan-ticker-banner {
  background-color: var(--color-terracota);
  color: var(--color-creme);
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 2px solid var(--color-nude);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(74, 14, 78, 0.15);
  font-family: var(--font-family);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  animation: ticker 25s linear infinite;
  gap: 40px;
  padding-left: 40px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-item i {
  color: var(--color-nude);
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 2. Instagram Highlights (Categorias Circulares) */
.instagram-highlights-wrapper {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  width: 95px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-item:hover {
  transform: scale(1.08);
}

.highlight-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, var(--color-terracota), var(--color-nude), #e6683c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(74, 14, 78, 0.15);
  position: relative;
}

.highlight-circle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  background-color: var(--color-white);
  border-radius: 50%;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.highlight-item:hover .highlight-circle::before {
  opacity: 0.85;
}

.highlight-icon-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-terracota);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon-box {
  background-color: var(--color-terracota);
  color: var(--color-white);
}

.highlight-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-grafite);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3. Glassmorphic Card (Efeito Vidro Premium) */
.glass-card {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 15px 35px rgba(35, 7, 37, 0.08) !important;
}

.hero-floating-card.glass-card {
  border: 1px solid rgba(199, 148, 39, 0.25) !important;
}

/* 4. Shine Button Micro-interaction */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  left: 130%;
  transition: all 0.75s ease-in-out;
}




 / *   - - -   E m   A l t a   B a d g e   - - -   * / 
 . b a d g e - e m - a l t a   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   1 5 p x ; 
     l e f t :   1 5 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f 4 1 6 c   0 % ,   # f f 4 b 2 b   1 0 0 % ) ; 
     c o l o r :   w h i t e ; 
     p a d d i n g :   6 p x   1 2 p x ; 
     b o r d e r - r a d i u s :   2 0 p x ; 
     f o n t - s i z e :   0 . 7 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   1 p x ; 
     z - i n d e x :   1 0 ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 5 5 ,   7 5 ,   4 3 ,   0 . 4 ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   5 p x ; 
     a n i m a t i o n :   p u l s e - b a d g e   2 s   i n f i n i t e ; 
 } 
 
 @ k e y f r a m e s   p u l s e - b a d g e   { 
     0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 5 5 ,   7 5 ,   4 3 ,   0 . 4 ) ;   } 
     5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;   b o x - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 2 5 5 ,   7 5 ,   4 3 ,   0 . 6 ) ;   } 
     1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 5 5 ,   7 5 ,   4 3 ,   0 . 4 ) ;   } 
 } 
 
 / *   - - -   S k e l e t o n   L o a d i n g   - - -   * / 
 . s k e l e t o n   { 
     b a c k g r o u n d :   # f 3 f 4 f 6 ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # f 3 f 4 f 6   2 5 % ,   # e 5 e 7 e b   5 0 % ,   # f 3 f 4 f 6   7 5 % ) ; 
     b a c k g r o u n d - s i z e :   2 0 0 %   1 0 0 % ; 
     a n i m a t i o n :   s k e l e t o n - s h i m m e r   1 . 5 s   i n f i n i t e ; 
     b o r d e r - r a d i u s :   8 p x ; 
 } 
 
 @ k e y f r a m e s   s k e l e t o n - s h i m m e r   { 
     0 %   {   b a c k g r o u n d - p o s i t i o n :   2 0 0 %   0 ;   } 
     1 0 0 %   {   b a c k g r o u n d - p o s i t i o n :   - 2 0 0 %   0 ;   } 
 } 
 
 . s k e l e t o n - t e x t   { 
     h e i g h t :   1 4 p x ; 
     m a r g i n - b o t t o m :   8 p x ; 
     w i d t h :   8 0 % ; 
 } 
 
 . s k e l e t o n - t i t l e   { 
     h e i g h t :   2 0 p x ; 
     m a r g i n - b o t t o m :   1 2 p x ; 
     w i d t h :   6 0 % ; 
 } 
 
 . s k e l e t o n - i m g   { 
     w i d t h :   1 0 0 % ; 
     a s p e c t - r a t i o :   4 / 5 ; 
     b o r d e r - r a d i u s :   1 6 p x ; 
 } 
  
 