/* ===================================
   Header Styles
   =================================== */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
  color: white;
  padding: 8px 0;
  font-size: 0.875rem;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.header-main {
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-branding {
  flex-shrink: 0;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
}

.site-title a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
}

.site-description {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.custom-logo-link img {
  max-height: 60px;
  width: auto;
}

/* Navigation */
.main-navigation {
  flex: 1;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  display: block;
  transition: color var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--primary-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle .menu-icon {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.search-modal.active {
  display: flex;
}

.search-modal-inner {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 5px;
}

.search-modal-close:hover {
  color: var(--primary-red);
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.search-form input[type="search"]:focus {
  border-color: var(--primary-red);
}

.search-form button,
.search-form input[type="submit"] {
  padding: 15px 30px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-form button:hover,
.search-form input[type="submit"]:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-search {
  max-width: 600px;
  margin: 2rem auto;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.category-badge {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.category-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===================================
   Section Styles
   =================================== */
.section-padding {
  padding: 60px 0;
}

.bg-light {
  background-color: var(--bg-lighter);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.view-all {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.view-all:hover {
  color: var(--primary-green);
}

/* ===================================
   Grid Layouts
   =================================== */
.promotions-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ===================================
   Card Styles
   =================================== */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-light);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.card-image-placeholder {
  width: 100%;
  height: 220px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-red);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(193, 39, 45, 0.3);
  z-index: 10;
}

.badge-green {
  background: var(--primary-green);
  box-shadow: 0 2px 8px rgba(0, 98, 51, 0.3);
}

/* Card Body */
.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-brand a {
  color: var(--primary-green);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.card-title a:hover {
  color: var(--primary-red);
}

.card-excerpt {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

/* Card Meta */
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.meta-item svg {
  flex-shrink: 0;
  color: var(--primary-red);
}

.meta-item a {
  color: var(--text-light);
  text-decoration: none;
}

.meta-item a:hover {
  color: var(--primary-red);
}

/* Product Price */
.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 39, 45, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: white;
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ===================================
   Store Card (Horizontal)
   =================================== */
.card-horizontal {
  flex-direction: row;
  align-items: stretch;
}

.store-logo {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  padding: 1rem;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.store-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.store-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

/* ===================================
   Brand Card
   =================================== */
.brand-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.brand-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  text-align: center;
}

.brand-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo .logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  background: var(--bg-lighter);
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.brand-link:hover .brand-name {
  color: var(--primary-red);
}

/* ===================================
   Footer
   =================================== */
.site-footer {
  background: var(--text-dark);
  color: var(--bg-lighter);
  margin-top: 4rem;
}

.footer-widgets {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-widget h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget li {
  margin-bottom: 0.5rem;
}

.footer-widget a {
  color: var(--bg-lighter);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-widget a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-info p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
}

.footer-info a {
  color: var(--accent-gold);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-menu a {
  color: var(--bg-lighter);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-menu a:hover {
  color: var(--accent-gold);
}

/* ===================================
   Pagination
   =================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination .page-numbers {
  padding: 10px 15px;
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .header-inner {
    gap: 1rem;
  }
  
  .main-navigation ul {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .promotions-grid,
  .products-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .stores-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .card-horizontal {
    flex-direction: column;
  }
  
  .store-logo {
    width: 100%;
    height: 150px;
  }
  
  .store-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .store-actions {
    flex-direction: column;
  }
  
  /* Mobile Menu */
  .menu-toggle {
    display: block;
  }
  
  .main-navigation ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  
  .main-navigation.toggled ul {
    display: flex;
  }
  
  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }
  
  .main-navigation a {
    padding: 1rem 0;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-search .search-form {
    flex-direction: column;
  }
  
  .hero-categories {
    gap: 0.5rem;
  }
  
  .category-badge {
    font-size: 0.875rem;
    padding: 6px 15px;
  }
}

/* ===================================
   Single Post Styles
   =================================== */
.breadcrumbs {
  margin: 2rem 0;
  font-size: 0.875rem;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li {
  display: inline;
}

.breadcrumb-list a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--primary-red);
}

.breadcrumb-list .separator {
  color: var(--text-muted);
}

.breadcrumb-list .active {
  color: var(--text-dark);
}

/* Entry Header */
.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.entry-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.entry-meta svg {
  vertical-align: middle;
  margin-right: 0.25rem;
}

.product-brand-label {
  margin-bottom: 0.5rem;
}

.product-brand-label a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-green);
  color: white;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

/* Featured Image */
.entry-featured-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.entry-featured-image img {
  width: 100%;
  height: auto;
}

/* Content Wrapper with Sidebar */
.entry-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin-bottom: 3rem;
}

.entry-content {
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

/* Sidebar Details Box */
.entry-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.promotion-details-box,
.product-details-box {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.detail-badge {
  background: var(--primary-red);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.detail-badge.badge-green {
  background: var(--primary-green);
}

.badge-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.badge-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.detail-prices {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.detail-prices .original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.detail-prices .sale-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.detail-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.detail-item:last-of-type {
  border-bottom: none;
}

.detail-item svg {
  flex-shrink: 0;
  color: var(--primary-red);
  margin-top: 2px;
}

.detail-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.detail-item p {
  margin: 0;
  color: var(--text-medium);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

/* Store Single */
.store-single .entry-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.store-logo-large {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.store-logo-large img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.store-header-info {
  flex: 1;
}

.store-tagline {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin: 0.5rem 0 0 0;
}

.store-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-item svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-item:hover {
  background: var(--bg-lighter);
}

.store-promotions {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-light);
}

.store-promotions h2 {
  margin-bottom: 2rem;
}

/* Responsive Single Pages */
@media (max-width: 1024px) {
  .entry-content-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 2rem;
  }
  
  .entry-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .entry-sidebar {
    position: static;
  }
  
  .store-single .entry-header {
    flex-direction: column;
    text-align: center;
  }
  
  .store-contact-bar {
    flex-direction: column;
  }
  
  .contact-item {
    width: 100%;
  }
}

/* ===================================
   Page Header
   =================================== */
.page-header {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
  color: white;
  border-radius: 12px;
}

.page-title {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: white;
}

.page-description,
.archive-description {
  font-size: 1.125rem;
  margin: 0;
  opacity: 0.95;
}

/* ===================================
   404 Error Page
   =================================== */
.error-404-content {
  text-align: center;
  padding: 4rem 0;
}

.error-404-number {
  font-size: 10rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-404-content .page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.error-message {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.error-404-search {
  max-width: 500px;
  margin: 3rem auto;
}

.error-404-search p {
  margin-bottom: 1rem;
  font-weight: 600;
}

.error-404-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.popular-links {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-light);
}

.popular-links h3 {
  text-align: center;
  margin-bottom: 2rem;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results .page-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.no-results p {
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .error-404-number {
    font-size: 6rem;
  }
  
  .error-404-content .page-title {
    font-size: 2rem;
  }
  
  .error-404-links {
    flex-direction: column;
    align-items: stretch;
  }
}
