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

:root {
  --primary: #d19028;
  --primary-dark: #b17b20;
  --primary-light: #f0b555;
  --text-dark: #1d1a15;
  --text-dark-muted: #4a453f;
  --text-light: #ffffff;
  --bg-light: #fdfcfb;
  --bg-grey: #f4f2ee;
  --bg-dark: #2c2822;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 80px;
  --nav-height-large: 220px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 15px rgba(209, 144, 40, 0.4);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark-muted);
}

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

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

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

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Utilities */
.text-center {
  text-align: center;
}

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

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

.bg-dark h2 {
  color: var(--text-light);
}

.bg-dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(253, 252, 251, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(253, 252, 251, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.nav-btn {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}

.nav-links a.nav-btn:hover,
.nav-links a.nav-btn.active {
  background-color: var(--primary-dark);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Layout Offsets */
main {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height) - 100px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 26, 21, 0.9) 0%, rgba(29, 26, 21, 0.6) 50%, rgba(29, 26, 21, 0.1) 100%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Services Page 2x2 Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-detail-card {
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;

}

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

.service-detail-card h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.service-detail-card p {
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Feature/Value Cards */
.value-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}

.value-icon {
  font-size: 2.5rem;
  color: #DB9428;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Service List Styles */
.service-list {
  list-style: none;
  margin-top: 1rem;
}

.service-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-list-icon {
  color: var(--primary);
  width: 24px;
  height: 24px;
  stroke-width: 4px;
  flex-shrink: 0;
}

/* Service Cards */
.service-card {
  display: block;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary);
  transition: var(--transition);
}

.service-card:hover::after {
  width: 100%;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-content p {
  margin-bottom: 0;
}

/* Gallery / Projects */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
  transition: var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Client Logos */
.client-logo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md) !important;
  border-color: var(--primary) !important;
}

/* Contact / Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.contact-form-card {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-area-card {
  background: var(--bg-grey);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: left;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(209, 144, 40, 0.2);
}

/* Checkatrade Callout */
.checkatrade-badge {
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.checkatrade-badge img {
  height: 60px;
  margin: 0 auto 1.5rem;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-col p {
  color: inherit;
}

.footer-desc {
  line-height: 1.6;
  color: inherit;
}

.footer-desc.text-unwrapped {
  white-space: nowrap;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

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

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

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

  .footer-col p,
  .footer-desc,
  .footer-desc.text-unwrapped {
    white-space: normal !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .contact-grid.container {
    padding: 0 5px;
  }

  .contact-form-card,
  .contact-info {
    padding: 1.5rem;
  }

  .service-area-card {
    padding: 1.25rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1.5rem;
    gap: 0;
  }

  .logo.default-logo {
    display: none !important;
  }

  .logo.scrolled-logo {
    display: flex !important;
  }

  .logo img {
    height: 45px !important;
  }

  .navbar {
    height: 70px;
    padding: 0;
  }

  .nav-container {
    flex-direction: row !important;
    justify-content: space-between;
    padding: 0 1.5rem;
  }

  .logo img {
    height: 40px !important;
  }

  .nav-links {
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    gap: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  main {
    margin-top: 70px;
  }

  .mobile-menu-btn {
    display: block;
  }

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

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

/* ==========================================================================
   Image Gallery & Lightbox Modal System
   ========================================================================== */
.gallery-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.gallery-track-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.gallery-item {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.95);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: white;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-nav-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.gallery-nav-btn.prev {
  left: 1.5rem;
}

.gallery-nav-btn.next {
  right: 1.5rem;
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: all;
}

.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal.active .gallery-modal-img {
  transform: scale(1);
}

.gallery-modal-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.gallery-modal-close:hover {
  color: white;
  transform: scale(1.1) rotate(90deg);
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.gallery-modal-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.gallery-modal-nav.prev {
  left: -4.5rem;
}

.gallery-modal-nav.next {
  right: -4.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-modal-nav.prev {
    left: 1rem;
    background: rgba(0, 0, 0, 0.5);
  }
  .gallery-modal-nav.next {
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
  }
  .gallery-modal-close {
    top: 1rem;
    right: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
}

/* ==========================================================================
   404 Page Custom Styling
   ========================================================================== */
.error-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 6rem 0;
}

.error-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
}

.error-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 45px -10px rgba(0, 0, 0, 0.12), 0 12px 15px -8px rgba(0, 0, 0, 0.06);
}

.error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--bg-grey);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.error-card:hover .error-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  color: var(--primary-light);
  background: var(--bg-dark);
}

.error-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.error-card h1 {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.error-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.error-text {
  font-size: 1rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .error-card {
    padding: 3rem 1.5rem;
  }
  
  .error-card h1 {
    font-size: 2.25rem;
  }
  
  .error-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .error-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Cookie Consent Banner & Trigger Styles
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-grey);
  color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.cookie-banner-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.cookie-banner-header h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-heading);
}

.cookie-banner-body p {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-banner-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.cookie-banner-btn-accept {
  background-color: var(--primary);
  color: var(--text-light);
}

.cookie-banner-btn-accept:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.cookie-banner-btn-decline {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-dark-muted);
}

.cookie-banner-btn-decline:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background-color: var(--bg-grey);
}

.cookie-trigger {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 9998;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.cookie-trigger.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.cookie-trigger:hover {
  background: var(--bg-dark);
  color: var(--text-light);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cookie-trigger svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(100%);
  }
  
  .cookie-banner-actions {
    flex-direction: row-reverse;
  }
  
  .cookie-banner-btn {
    flex: 1;
    text-align: center;
  }

  .cookie-trigger {
    bottom: 1rem;
    left: 1rem;
    width: 38px;
    height: 38px;
  }

  .cookie-trigger svg {
    width: 18px;
    height: 18px;
  }
}