/* ========================================
   STYLE.CSS - Blog Adoradores
   Clean, Minimalist & Professional Design
   ======================================== */

/* ========================================
   1. ROOT VARIABLES
   ======================================== */
:root {
  --primary-color: #3a47d5;
  --primary-dark: #2a3399;
  --primary-light: #5a6fe8;
  --secondary-color: #f39c12;
  --secondary-dark: #d68910;
  
  --text-dark: #212529;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-dark: #1a1a1a;
  
  --border-color: #e9ecef;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: 200ms ease-in-out;
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  direction: ltr;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 0.8rem;
  text-align: right;
}

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

a:hover {
  color: var(--primary-dark);
}

/* ========================================
   4. LAYOUT CONTAINERS
   ======================================== */

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

.container.primary {
  padding: 1.5rem;
}

.container.secondary {
  padding: 1rem 1.5rem;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.col-lg-1 { grid-column: span 1; }
.col-lg-2 { grid-column: span 2; }
.col-lg-3 { grid-column: span 3; }
.col-lg-4 { grid-column: span 4; }
.col-lg-5 { grid-column: span 5; }
.col-lg-6 { grid-column: span 6; }
.col-lg-7 { grid-column: span 7; }
.col-lg-8 { grid-column: span 8; }
.col-lg-9 { grid-column: span 9; }
.col-lg-10 { grid-column: span 10; }
.col-lg-11 { grid-column: span 11; }
.col-lg-12 { grid-column: span 12; }

.m-auto {
  margin: 0 auto;
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

header {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  position: static;
  z-index: auto;
  box-shadow: none;
  max-height: 60px;
  overflow: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.3rem 1.5rem;
  flex-wrap: nowrap;
  gap: 0.6rem;
  height: 100%;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo:hover {
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu a:hover {
  background-color: var(--bg-gray);
  color: var(--primary-color);
}

/* ========================================
   6. SEARCH FORM
   ======================================== */

.search-form {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background-color: var(--bg-gray);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.search-form:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 71, 213, 0.1);
}

.search-form input {
  flex: 0 1 auto;
  border: none;
  background: transparent;
  outline: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  min-width: 100px;
  max-width: 150px;
}

.search-form input::placeholder {
  color: var(--text-muted);
}

.search-form .submit {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.search-form .submit:hover {
  color: var(--primary-color);
}

/* ========================================
   7. BUTTONS
   ======================================== */

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary, button.submit {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover, button.submit:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-hot {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--text-light);
  font-weight: 700;
}

.btn-hot:hover {
  box-shadow: var(--shadow-md);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   8. CARDS
   ======================================== */

.wwp-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.wwp-card-shadow-style-01 {
  box-shadow: var(--shadow-light);
}

.wwp-card-shadow-style-01:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ========================================
   9. PAGE HEADER
   ======================================== */

.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.pagetitle-block {
  position: relative;
  z-index: 1;
}

.pagetitle-block .title h1 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 0;
}

/* ========================================
   10. CONVERSION BLOCK
   ======================================== */

.conversion-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-gray), var(--bg-light));
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.conversion-block.-vertical {
  grid-template-columns: 1fr;
  text-align: center;
}

.conversion-block .block-text {
  flex: 1;
}

.conversion-block .block-text .title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: right;
}

.conversion-block .block-text .description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: right;
}

.conversion-block.-vertical .block-text .title,
.conversion-block.-vertical .block-text .description {
  text-align: center;
}

.conversion-block .block-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  color: var(--primary-color);
  opacity: 0.15;
}

.conversion-block .block-form {
  flex: 1;
}

/* ========================================
   11. FORMS
   ======================================== */

.form-data {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-data .group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-data .field {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: all var(--transition);
}

.form-data .field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 71, 213, 0.1);
}

.form-data .obs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}

.form-data .obs i {
  color: #28a745;
}

/* ========================================
   12. BLOG GALLERY & POSTS
   ======================================== */

.blog-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.blog-gallery.-gallery-4 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.post-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.post-item .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--bg-gray);
}

.post-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.post-item:hover .image img {
  transform: scale(1.08);
}

.post-item .image i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--text-light);
  opacity: 0;
  transition: opacity var(--transition);
}

.post-item:hover .image i {
  opacity: 0.8;
}

.post-item .text {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-item .text .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.4;
  text-align: right;
}

.post-item .text .title a {
  color: var(--text-dark);
  transition: color var(--transition);
}

.post-item .text .title a:hover {
  color: var(--primary-color);
}

/* ========================================
   13. PAGINATION
   ======================================== */

.pagination-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.pagination-block .list {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-block .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.4rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
}

.pagination-block .page-numbers:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: var(--bg-gray);
}

.pagination-block .page-numbers.current {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

/* ========================================
   14. FOOTER
   ======================================== */

footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  margin-top: 2rem;
  max-height: 80px;
  overflow: hidden;
}

footer a {
  color: var(--primary-light);
}

footer a:hover {
  color: var(--text-light);
}

.footer-capture {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0 0 0;
  max-height: 100px;
  overflow: hidden;
}

.footer-capture .block-text .title {
  color: var(--text-light);
  text-align: center;
}

.footer-capture .block-text .description {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* ========================================
   15. DARK MODE TOGGLE
   ======================================== */

.darkmode-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--bg-gray);
  border: none;
  border-radius: 20px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
}

.darkmode-toggle:hover {
  background-color: var(--border-color);
}

.darkmode-toggle-element {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.darkmode-toggle-label {
  font-weight: 600;
  color: var(--text-dark);
}

/* ========================================
   16. SPACING UTILITIES
   ======================================== */

.spacing-section {
  padding: 1.5rem 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary-color); }

/* ========================================
   17. RESPONSIVE DESIGN
   ======================================== */

/* Tablet - Medium Screens (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 1.2rem;
  }
  
  .container.primary {
    padding: 1.2rem;
  }
  
  .container.secondary {
    padding: 1rem 1.2rem;
  }
  
  nav {
    padding: 0.5rem 1.2rem;
    gap: 1rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    gap: 1.3rem;
    font-size: 0.95rem;
  }
  
  .nav-menu a {
    padding: 0.35rem 0.7rem;
    font-size: 0.93rem;
  }
  
  .search-form {
    padding: 0.45rem 0.9rem;
  }
  
  .search-form input {
    font-size: 0.93rem;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.15rem; }
  
  .page-header {
    padding: 1.8rem 1.2rem;
  }
  
  .pagetitle-block .title h1 {
    font-size: 2rem;
  }
  
  .conversion-block {
    grid-template-columns: 1fr 1fr;
    padding: 1.4rem;
    gap: 1.4rem;
  }
  
  .conversion-block.-vertical {
    grid-template-columns: 1fr;
  }
  
  .conversion-block .block-text .title {
    font-size: 1.2rem;
  }
  
  .conversion-block .block-text .description {
    font-size: 0.98rem;
  }
  
  .conversion-block .block-visual {
    font-size: 3rem;
  }
  
  .blog-gallery.-gallery-4 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
  }
  
  .post-item .image {
    aspect-ratio: 16 / 9;
  }
  
  .post-item .text {
    padding: 0.95rem;
  }
  
  .post-item .text .title {
    font-size: 1.05rem;
  }
  
  .row {
    gap: 1.4rem;
  }
  
  button, .btn {
    padding: 0.65rem 1.3rem;
    font-size: 0.98rem;
  }
  
  .form-data {
    gap: 0.9rem;
  }
  
  .form-data .field {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .form-data .obs {
    font-size: 0.88rem;
  }
  
  .pagination-block .page-numbers {
    min-width: 2.3rem;
    height: 2.3rem;
    font-size: 0.93rem;
  }
  
  .spacing-section {
    padding: 1.8rem 0;
  }
  
  footer {
    padding: 1.4rem;
  }
  
  .footer-capture {
    padding: 1.4rem;
  }
  
  .darkmode-toggle {
    gap: 0.5rem;
    padding: 0.45rem 0.7rem;
  }
  
  .darkmode-toggle-element {
    width: 1.1rem;
    height: 1.1rem;
  }
}

/* Large Screens (1025px and above) */
@media (min-width: 1025px) {
  /* Default styles for large screens */
}

/* Small Screens - Phones (max-width: 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .container.primary {
    padding: 1rem;
  }
  
  .container.secondary {
    padding: 0.8rem 1rem;
  }
  
  header {
    max-height: 50px;
  }
  
  nav {
    padding: 0.25rem 1rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .nav-menu {
    gap: 0.6rem;
    font-size: 0.85rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .nav-menu a {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  
  .pagetitle-block .title h1 {
    font-size: 1.8rem;
  }
  
  .page-header {
    padding: 1.5rem 1rem;
  }
  
  .conversion-block {
    padding: 1.2rem;
    gap: 1rem;
  }
  
  .conversion-block .block-text .title {
    font-size: 1.1rem;
  }
  
  .conversion-block .block-visual {
    font-size: 2.5rem;
  }
  
  .blog-gallery.-gallery-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .post-item .text {
    padding: 0.8rem;
  }
  
  .post-item .text .title {
    font-size: 0.9rem;
  }
  
  .row {
    gap: 1rem;
  }
  
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, 
  .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, 
  .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    grid-column: span 12;
  }
  
  button, .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-data .field {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* Extra Small Screens - Small Phones (max-width: 575px) */
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 0.8rem;
  }
  
  .container.primary {
    padding: 0.8rem;
  }
  
  header {
    max-height: 45px;
  }
  
  nav {
    padding: 0.2rem 0.8rem;
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  
  .logo {
    font-size: 0.95rem;
    white-space: nowrap;
  }
  
  .nav-menu {
    flex-wrap: nowrap;
    width: auto;
    gap: 0.4rem;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .nav-menu a {
    width: auto;
    text-align: left;
    font-size: 0.8rem;
    padding: 0.15rem 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }
  
  .pagetitle-block .title h1 {
    font-size: 1.5rem;
  }
  
  .page-header {
    padding: 1.2rem 0.8rem;
  }
  
  .conversion-block {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .conversion-block .block-text .title {
    font-size: 1rem;
  }
  
  .conversion-block .block-text .description {
    font-size: 0.9rem;
  }
  
  .conversion-block .block-visual {
    font-size: 2rem;
  }
  
  .blog-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .blog-gallery.-gallery-4 {
    grid-template-columns: 1fr;
  }
  
  .post-item .text {
    padding: 0.7rem;
  }
  
  .post-item .text .title {
    font-size: 0.9rem;
  }
  
  .search-form {
    width: 100%;
    padding: 0.4rem 0.8rem;
  }
  
  .search-form input {
    font-size: 0.9rem;
  }
  
  button, .btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-data .field {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .pagination-block .page-numbers {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
  
  footer {
    padding: 0.5rem 0.8rem;
    max-height: 60px;
  }
  
  .footer-capture {
    padding: 0.6rem 0.8rem;
    max-height: 80px;
  }
}

/* ========================================
   18. CONSENT BAR
   ======================================== */

.wolf-consentment-bar {
  background-color: var(--bg-gray);
  border-top: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  margin: 0;
}

.wolf-consentment-bar .container {
  padding: 0;
}

.wolf-consentment-bar .row {
  gap: 0.8rem;
  align-items: center;
}

.wolf-consentment-bar .col-md-7 {
  grid-column: span 7;
}

.wolf-consentment-bar .col-md-5 {
  grid-column: span 5;
}

.wolf-consentment-bar .d-flex {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wolf-consentment-bar .pe-4 {
  padding-right: 1rem;
}

.wolf-consentment-bar .pe-4 svg {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.wolf-consentment-bar p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: right;
  color: var(--text-dark);
}

.wolf-consentment-bar .row .row {
  width: 100%;
  gap: 0.5rem;
}

.wolf-consentment-bar .col-md-6 {
  grid-column: span 6;
}

.wolf-consentment-bar form {
  margin: 0;
}

.wolf-consentment-bar .btn-block {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.wolf-consentment-bar .text-lg-start {
  text-align: left;
}

.wolf-consentment-bar .text-center {
  text-align: center;
}

.wolf-consentment-bar .d-none {
  display: none;
}

.wolf-consentment-bar .d-lg-block {
  display: block;
}

/* Responsive untuk tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .wolf-consentment-bar {
    padding: 0.5rem 1.2rem;
  }
  
  .wolf-consentment-bar .row {
    gap: 0.6rem;
  }
  
  .wolf-consentment-bar p {
    font-size: 0.8rem;
  }
  
  .wolf-consentment-bar .btn-block {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* Responsive untuk mobile */
@media (max-width: 767px) {
  .wolf-consentment-bar {
    padding: 0.5rem 1rem;
  }
  
  .wolf-consentment-bar .col-md-7,
  .wolf-consentment-bar .col-md-5 {
    grid-column: span 12;
  }
  
  .wolf-consentment-bar .row {
    gap: 0.5rem;
  }
  
  .wolf-consentment-bar .d-flex {
    gap: 0.6rem;
  }
  
  .wolf-consentment-bar .pe-4 {
    padding-right: 0.6rem;
    display: none;
  }
  
  .wolf-consentment-bar .pe-4.d-none {
    display: none;
  }
  
  .wolf-consentment-bar p {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .wolf-consentment-bar .col-md-6 {
    grid-column: span 12;
  }
  
  .wolf-consentment-bar .btn-block {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .wolf-consentment-bar {
    padding: 0.4rem 0.8rem;
  }
  
  .wolf-consentment-bar .col-md-7,
  .wolf-consentment-bar .col-md-5 {
    grid-column: span 12;
  }
  
  .wolf-consentment-bar .row {
    gap: 0.4rem;
  }
  
  .wolf-consentment-bar .d-flex {
    gap: 0.5rem;
  }
  
  .wolf-consentment-bar p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .wolf-consentment-bar .btn-block {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* ========================================
   20. ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 300ms ease-in-out;
}

.slide-in-up {
  animation: slideInUp 300ms ease-in-out;
}

/* ========================================
   END OF STYLE.CSS
   ======================================== */
