:root {
  --primary: #6750a4;
  --on-primary: #fff;
  --primary-container: #eaddff;
  --on-primary-container: #21005d;
  --secondary: #bf4638;
  --bg: #fffbfe;
  --surface: #fff;
  --text-main: #1c1b1f;
  --text-sub: #49454f;
  --radius-lg: 16px;
  --radius-full: 100px;
  --shadow-sm: 0px 1px 3px 1px #00000026;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: Outfit, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: #fffffff2;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  width: 100%;
  height: 72px;
  display: flex;
  position: fixed;
  top: 0;
}

nav {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo {
  color: var(--primary);
  letter-spacing: -.5px;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
}

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

.nav-links a:not(.btn-nav-amazon) {
  color: var(--text-sub);
  font-weight: 500;
}

.btn-nav-amazon {
  white-space: nowrap;
  background-color: #ffd814;
  border: 1px solid #fcd200;
  border-radius: 24px;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: .9rem;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 2px 5px #0000001a;
  color: #0f1111 !important;
  font-weight: 600 !important;
}

.btn-nav-amazon:hover {
  background-color: #f7ca00;
  border-color: #f2c200;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #00000026;
}

.menu-btn {
  color: var(--text-main);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0;
  display: none;
}

.nav-close-btn {
  cursor: pointer;
  color: var(--text-main);
  background: none;
  border: none;
  padding: 10px;
  font-size: 2rem;
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.btn {
  border-radius: var(--radius-full);
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .2s;
  display: inline-flex;
}

.btn:active {
  transform: scale(.98);
}

.btn-amazon {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 12px #bf46384d;
}

.btn-tonal {
  background: var(--primary-container);
  color: var(--on-primary-container);
}

.btn-white {
  color: var(--primary);
  background: #fff;
  border: 1px solid #eee;
  font-weight: 700;
}

.btn-white:hover {
  background: #f9f9f9;
}

.btn-container {
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
}

.hero {
  padding: 120px 0 80px;
}

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

.hero-content h1 {
  color: var(--text-main);
  margin-bottom: 24px;
  font-size: 3.5rem;
  line-height: 1.1;
}

.hero-content p {
  color: var(--text-sub);
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 1.15rem;
}

.hero-img img {
  box-shadow: var(--shadow-sm);
  border-radius: 24px;
}

.section {
  padding: 80px 0;
}

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

.section-header h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.section-header p {
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto;
}

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

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
  flex-direction: column;
  padding: 16px;
  transition: transform .3s;
  display: flex;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px #0000000d;
}

.card-img {
  background: #f5f5f5;
  border-radius: 12px;
  height: 240px;
  margin-bottom: 16px;
  overflow: hidden;
}

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

.tag {
  text-transform: uppercase;
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 700;
  display: inline-block;
}

.price-row {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
}

.blog-section {
  background: var(--primary-container);
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 80px 0;
}

.blog-section h2 {
  text-align: center;
  color: var(--on-primary-container);
  margin-bottom: 40px;
  font-size: 2rem;
}

.blog-card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  transition: transform .2s;
  display: flex;
  overflow: hidden;
}

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

.blog-content h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.blog-content p {
  color: var(--text-sub);
  flex-grow: 1;
  margin-bottom: 12px;
  font-size: .9rem;
}

.read-link {
  color: var(--primary);
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
}

footer {
  background: #f4f4f4;
  border-top: 1px solid #eaeaea;
  margin-top: 80px;
  padding: 60px 0 30px;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  display: grid;
}

.footer-col h4 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 700;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-sub);
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-logo {
  color: var(--primary);
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
}

.brand-col p {
  color: var(--text-sub);
  font-size: .95rem;
  line-height: 1.6;
}

.highlight-link {
  font-weight: 600;
  color: var(--secondary) !important;
}

.footer-copyright {
  text-align: center;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  font-size: .85rem;
}

.footer-copyright a {
  color: #888;
  text-decoration: none;
}

@media (width <= 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    z-index: 999;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    transition: all .3s;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links.active .nav-close-btn {
    display: block;
  }

  .nav-links a:not(.btn-nav-amazon) {
    font-size: 1.5rem;
  }

  .btn-nav-amazon {
    justify-content: center;
    width: auto;
    margin-top: 10px;
    padding: 12px 32px;
    font-size: 1.1rem;
  }

  .hero {
    text-align: center;
    padding-top: 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    order: 2;
  }

  .hero-img {
    order: 1;
  }

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

  .btn {
    width: 100%;
  }
}

.blog-hero {
  padding-top: 100px;
  padding-bottom: 60px;
}

.featured-card {
  background: var(--primary-container);
  cursor: pointer;
  border-radius: 32px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  transition: transform .3s;
  display: grid;
  overflow: hidden;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px #6750a433;
}

.featured-img {
  height: 100%;
  min-height: 400px;
  position: relative;
}

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

.featured-content {
  padding: 40px 40px 40px 0;
}

.badge {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 700;
  display: inline-block;
}

.featured-content h2 {
  color: var(--on-primary-container);
  margin-bottom: 16px;
  font-size: 2.5rem;
  line-height: 1.1;
}

.featured-content p {
  color: var(--text-sub);
  max-width: 90%;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.blog-filters {
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  display: flex;
  overflow-x: auto;
}

.filter-btn {
  cursor: pointer;
  white-space: nowrap;
  color: var(--text-sub);
  background: none;
  border: 1px solid #ddd;
  border-radius: 100px;
  padding: 8px 20px;
  font-family: inherit;
  font-weight: 600;
  transition: all .3s;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

.blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  min-height: 300px;
  padding-bottom: 60px;
  display: grid;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
  flex-direction: column;
  height: 100%;
  transition: transform .3s;
  animation: .5s ease-in-out fadeIn;
  display: flex;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #0000000d;
}

.blog-img {
  background: #f5f5f5;
  height: 220px;
}

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

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

.blog-meta {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: .85rem;
  font-weight: 600;
}

.blog-card h3 {
  color: var(--text-main);
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-sub);
  flex-grow: 1;
  margin-bottom: 24px;
  font-size: .95rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary);
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-weight: 700;
  display: inline-flex;
}

.pagination {
  text-align: center;
  margin-bottom: 80px;
}

.load-more {
  border: 1px solid var(--text-main);
  cursor: pointer;
  background: none;
  border-radius: 100px;
  padding: 12px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.load-more:hover {
  background: var(--text-main);
  color: #fff;
}

.load-more:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (width <= 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-img {
    min-height: 250px;
  }

  .featured-content {
    padding: 24px;
  }

  .featured-content h2 {
    font-size: 1.8rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=article-creativity.3a01df49.css.map */
