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

:root {
  /* Color Palette */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F4EFEA;
  --text-primary: #1C1A17;
  --text-secondary: #5C5852;
  --accent-primary: #2A1B0E; /* Dark Oak / Sheesham */
  --accent-secondary: #4E3629;
  --gold: #C5A880; /* Premium Champagne Gold */
  --gold-dark: #A88B60;
  --white: #FFFFFF;
  --border-light: rgba(42, 27, 14, 0.08);
  --border-medium: rgba(42, 27, 14, 0.15);
  
  /* Shadows & Blur */
  --shadow-sm: 0 4px 6px rgba(42, 27, 14, 0.02);
  --shadow-md: 0 10px 30px rgba(42, 27, 14, 0.05);
  --shadow-lg: 0 20px 40px rgba(42, 27, 14, 0.1);
  --glass-bg: rgba(250, 248, 245, 0.85);
  --glass-border: rgba(42, 27, 14, 0.06);
  --glass-blur: blur(12px);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--accent-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

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

.section {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

/* Navbar */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar-header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-svg-container {
  height: 60px;
  width: auto;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.logo-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
}

.logo-subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-top: 1px;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-cta-btn {
  background-color: var(--accent-primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  border: 1px solid var(--accent-primary);
}

.nav-cta-btn:hover {
  background-color: transparent;
  color: var(--accent-primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--accent-primary);
  transition: var(--transition-fast);
}

/* Footer */
.footer {
  background-color: var(--accent-primary);
  color: #ECEAE6;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-svg {
  filter: brightness(0) invert(1);
  height: 60px;
  width: auto;
  align-self: flex-start;
}

.footer-desc {
  font-size: 0.9rem;
  color: #B4B0A9;
  max-width: 320px;
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: #B4B0A9;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: #B4B0A9;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.footer-social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: #B4B0A9;
}

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

.footer-social-btn:hover svg {
  fill: var(--accent-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: #8C8881;
}

/* Premium Buttons & UI Inputs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--white);
  border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.btn-secondary:hover {
  background-color: var(--accent-primary);
  color: var(--white);
}

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

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: transparent;
  color: #25D366;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  background-color: var(--accent-primary);
  color: var(--white);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 26, 23, 0.9) 30%, rgba(42, 27, 14, 0.4));
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

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

.hero-tagline {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #ECEAE6;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* About / Brand Story Section */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  color: var(--text-secondary);
}

.highlight-box {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 10px 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent-primary);
}

.about-image-stack {
  position: relative;
  height: 480px;
}

.about-img {
  position: absolute;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-1 {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img-2 {
  width: 65%;
  height: 65%;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 8px solid var(--bg-primary);
}

.about-image-stack:hover .about-img-1 {
  transform: translate(-10px, -10px);
}

.about-image-stack:hover .about-img-2 {
  transform: translate(10px, 10px);
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(28, 26, 23, 0.9) 10%, rgba(28, 26, 23, 0.1) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  z-index: 2;
}

.category-name {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.category-link {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-card:hover .category-link {
  color: var(--white);
}

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

.product-card {
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 27, 14, 0.12);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

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

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

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
}

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

.product-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.product-card-material {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.product-card-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: auto;
  margin-bottom: 16px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

/* Blog Cards */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

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

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

.blog-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.blog-card-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link:hover {
  color: var(--accent-primary);
}

/* Page Header (Subpages) */
.page-header {
  background-color: var(--bg-secondary);
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* Shop Filters & Grid Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 60px 0;
}

.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.filter-widget {
  background-color: var(--white);
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.filter-title {
  font-size: 1.15rem;
  margin-bottom: 18px;
  border-bottom: 1.5px solid var(--border-light);
  padding-bottom: 8px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-item.active a,
.filter-item a:hover {
  color: var(--gold-dark);
  font-weight: 500;
}

.search-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid var(--border-medium);
  background-color: var(--bg-primary);
  margin-top: 8px;
}

/* Product Details View */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 60px 0;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-gallery-main {
  aspect-ratio: 4/3;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

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

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

.gallery-thumb {
  aspect-ratio: 4/3;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--white);
}

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

.gallery-thumb.active {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold-dark);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail-cat {
  font-size: 0.8rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.product-detail-title {
  font-size: 2.75rem;
}

.product-detail-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.product-detail-desc {
  color: var(--text-secondary);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.specs-label {
  font-weight: 500;
  color: var(--text-primary);
  width: 140px;
}

.specs-val {
  color: var(--text-secondary);
}

/* Contact & Info */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 60px 0;
}

.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-info-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-info-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.map-wrapper {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 480px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Admin Dashboard & Panel */
.admin-login-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  background-color: var(--bg-secondary);
}

.login-form-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--border-medium);
  background-color: var(--bg-primary);
  font-size: 0.9rem;
}

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

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.alert-danger {
  background-color: #FDF2F2;
  color: #9B1C1C;
  border: 1px solid #FDE8E8;
}

.alert-success {
  background-color: #F3FAF7;
  color: #03543F;
  border: 1px solid #DEF7EC;
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
}

.admin-sidebar {
  background-color: var(--accent-primary);
  color: #ECEAE6;
  padding: 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

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

.admin-menu-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: #B4B0A9;
}

.admin-menu-item.active a,
.admin-menu-item a:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
}

.admin-content {
  padding: 40px;
  background-color: var(--bg-primary);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

.admin-title {
  font-size: 2rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background-color: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-dark);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.stat-info h3 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.admin-table th,
.admin-table td {
  padding: 16px 20px;
  text-align: left;
}

.admin-table th {
  background-color: var(--bg-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-primary);
  border-bottom: 1px solid var(--border-light);
}

.admin-table td {
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  vertical-align: middle;
}

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

.table-img {
  width: 50px;
  height: 38px;
  object-fit: cover;
  border-radius: 2px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-success {
  background-color: #DEF7EC;
  color: #03543F;
}

.badge-warning {
  background-color: #FEF08A;
  color: #713F12;
}

.actions-cell {
  display: flex;
  gap: 8px;
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Blog Article Styles */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.blog-meta-top {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.blog-article-title {
  font-size: 3rem;
  margin-bottom: 24px;
}

.blog-cover-wrap {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-secondary);
}

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

.blog-body-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2C2A27;
}

.blog-body-content p {
  margin-bottom: 24px;
}

.blog-body-content h2,
.blog-body-content h3 {
  margin: 40px 0 20px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .about-split,
  .product-detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-stack {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .shop-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-light);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-layout {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    display: none; /* Can be toggled on mobile dashboard */
  }
  
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-sidebar {
    grid-template-columns: 1fr;
  }
}
