/*
Theme Name: Crystal Apron
Theme URI: https://crystalapron.com
Author: Crystal Apron Team
Author URI: https://crystalapron.com
Description: Premium Transparent Aprons – A modern, glassmorphism-styled WordPress theme for Crystal Apron featuring a hero section, pricing cards, and product showcase.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crystal-apron
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready, e-commerce
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ============================
   CRYSTAL APRON – style.css
   ============================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f0f0f3;
  --bg2: #e8e8ec;
  --white: #ffffff;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --gray-lt: #9ca3af;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bdr: rgba(255, 255, 255, 0.9);
  --shadow-sm: 6px 6px 16px rgba(0, 0, 0, 0.07), -4px -4px 12px rgba(255, 255, 255, 0.9);
  --shadow-md: 10px 10px 30px rgba(0, 0, 0, 0.10), -6px -6px 20px rgba(255, 255, 255, 0.95);
  --shadow-lg: 16px 16px 48px rgba(0, 0, 0, 0.12), -8px -8px 28px rgba(255, 255, 255, 1);
  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: linear-gradient(145deg, #f5f5f8 0%, #ececf0 40%, #e8e8ed 100%);
  min-height: 100vh;
  color: var(--dark);
  overflow-x: hidden;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #c1c1c6;
  border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(245, 245, 248, 0.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}

.logo-crystal {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--dark);
}

.logo-apron {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gray);
  margin-top: 1px;
}

/* Nav Links – WordPress menu */
.nav-links,
.wp-block-navigation__container,
.menu-primary-container {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link,
.wp-block-navigation-link,
.menu-item a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-link::after,
.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active,
.menu-item a:hover,
.current-menu-item a {
  color: var(--dark);
}

.nav-link.active::after,
.nav-link:hover::after,
.menu-item a:hover::after,
.current-menu-item a::after {
  width: 100%;
}

/* Active pill */
.nav-link.active,
.current-menu-item a {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.nav-link.active::after,
.current-menu-item a::after {
  display: none;
}

/* Cart Button */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.cart-btn:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cart-icon {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 100px 48px 0;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Ambient background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 220, 230, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 200, 215, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Hero Left ---- */
.hero-left {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Heading */
.hero-heading {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.heading-gray {
  color: #a0a0aa;
}

/* Subtitle */
.hero-subtitle {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 380px;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.3s ease both;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  padding: 14px 28px;
  position: relative;
  overflow: hidden;
}

/* Primary – Glossy Black */
.btn-primary {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 60%, #2a2a2a 100%);
  color: #ffffff;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.32),
    0 2px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.38),
    0 4px 14px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary – Glass White */
.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ---- Features Strip ---- */
.features-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.4s ease both;
  width: fit-content;
  max-width: 100%;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  padding: 0 18px;
  white-space: nowrap;
}

.strip-item svg {
  flex-shrink: 0;
}

.strip-divider {
  width: 1px;
  height: 22px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ---- Pricing Row ---- */
.pricing-row {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.8s 0.5s ease both;
  flex-wrap: nowrap;
}

.price-card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(30px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.06),
    inset 0 4px 24px rgba(255, 255, 255, 0.6);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.1),
    inset 0 4px 32px rgba(255, 255, 255, 0.8);
}

.price-card-inner {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  position: relative;
}

/* Featured Card overrides */
.price-card-featured {
  border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.45);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d0d;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.price-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.plan-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

.plan-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin: 8px 0 16px;
}

/* Price Card Buttons */
.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  margin-top: auto;
}

.price-btn-outline {
  background: rgba(255, 255, 255, 0.0);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--dark);
}

.price-btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.price-btn-black {
  background: linear-gradient(135deg, #1a1a1a, #000);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.price-btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

/* ---- Hero Right ---- */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 600px;
}

.model-container {
  position: absolute;
  bottom: -40px;
  width: 100%;
  height: 102vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.model-img {
  width: auto;
  max-width: none;
  height: 100%;
  max-height: 1000px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.14));
  animation: floatUp 1s 0.2s ease both;
  transition: filter var(--transition);
}

.model-img:hover {
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.2));
}

/* Rating Float Card */
.rating-float {
  position: absolute;
  right: 0;
  bottom: 120px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 10;
  pointer-events: auto;
  animation: floatCard 6s ease-in-out infinite, fadeUp 1s 0.6s ease both;
  min-width: 160px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.rating-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.rating-label {
  font-size: 10.5px;
  color: var(--gray);
  font-weight: 400;
}

/* ============================================================
   BOTTOM FEATURES ROW
   ============================================================ */
.bottom-features {
  padding: 0 48px 60px;
  position: relative;
  z-index: 2;
}

.bf-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.bf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding: 8px 12px;
  transition: all var(--transition);
}

.bf-item:hover {
  transform: translateY(-2px);
}

.bf-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.bf-item:hover .bf-icon {
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.bf-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  text-align: left;
}

.bf-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  text-align: center;
  padding: 40px 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.footer-copy {
  font-size: 11px;
  color: var(--gray-lt);
  margin-top: 2px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 28px;
  }

  .nav-links,
  .wp-block-navigation__container,
  .menu-primary-container {
    gap: 22px;
  }

  .hero {
    padding: 100px 28px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-left {
    padding-bottom: 0;
  }

  .hero-right {
    min-height: 420px;
    order: -1;
    align-items: center;
  }

  .model-img {
    height: 60vh;
    max-height: 520px;
  }

  .rating-float {
    right: 16px;
    bottom: 24px;
  }

  .bottom-features {
    padding: 0 28px 40px;
  }
}

/* Mobile – 768px */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links,
  .wp-block-navigation__container,
  .menu-primary-container {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(245, 245, 248, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: none;
  }

  .nav-links.open,
  .wp-block-navigation__container.open,
  .menu-primary-container.open {
    display: flex;
  }

  .nav-links li,
  .menu-item {
    width: 100%;
    text-align: center;
  }

  .nav-link,
  .menu-item a {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 15px;
  }

  .nav-link.active,
  .current-menu-item a {
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-left: 3px solid var(--dark);
  }

  .hamburger {
    display: flex;
  }

  .cart-btn span {
    display: none;
  }

  .hero {
    padding: 80px 20px 0;
  }

  .hero-heading {
    font-size: clamp(36px, 9vw, 54px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .features-strip {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    padding: 16px;
    gap: 8px;
  }

  .strip-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .strip-divider {
    display: none;
  }

  .pricing-row {
    flex-direction: column;
    gap: 12px;
  }

  .hero-right {
    min-height: 300px;
  }

  .model-img {
    height: 45vh;
    max-height: 380px;
  }

  .bottom-features {
    padding: 0 20px 32px;
  }

  .bf-inner {
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
  }

  .bf-divider {
    width: 80%;
    height: 1px;
  }

  .bf-item {
    justify-content: flex-start;
    padding: 10px 8px;
  }

  .footer {
    padding: 32px 20px;
  }
}

/* Small Mobile – 480px */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .features-strip {
    width: 100%;
  }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */

/* WordPress admin bar fix */
body.admin-bar .navbar {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px;
  }
}

/* Screen reader text (WordPress accessibility requirement) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* WordPress image captions */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  margin: 0.8075em 0;
}

/* Gallery */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  gap: 0.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* Post navigation */
.post-navigation,
.posts-navigation {
  margin: 2em 0;
}

/* Comments */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment-list .comment {
  margin-bottom: 1.5em;
  padding: 1.5em;
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-bdr);
}

/* Widget areas */
.widget {
  margin-bottom: 2em;
}

.widget ul {
  list-style: none;
  padding: 0;
}

/* Sticky posts */
.sticky {
  display: block;
}
