:root {
  --primary-color: #4b78bb;
  --secondary-color: #1a1a2e;
  --accent-color: #c41e3a;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.4s ease;
  padding: 1rem 0;
  background: #fff;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-brand img {
  max-height: 40px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text) !important;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--dark-text) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  overflow: hidden;
  margin-top: 92px; /* Navbar yüksekliği kadar boşluk bırakıldı */
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 85vh; /* Masaüstünde sayfanın %85'ini kaplar */
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  width: 100%;
  height: 100%;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi büzmeden kapsar (sadece masaüstünde) */
  display: block;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.3) 0%,
    rgba(26, 26, 46, 0.5) 100%
  );
}

/* Carousel Controls Customization */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
  opacity: 1;
}

.hero-slider .carousel-control-prev {
  left: 30px;
}

.hero-slider .carousel-control-next {
  right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background: var(--primary-color);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Carousel Indicators */
.hero-slider .carousel-indicators {
  bottom: 30px;
}

.hero-slider .carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Button Styles */
.btn-primary-custom {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75, 120, 187, 0.4);
  background: #3a60a0;
}

/* Video Image Split Section */
.video-image-section {
  background: var(--light-bg);
  padding: 70px 0;
  margin-bottom: 0;
}

.video-image-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 20px;
}

.video-image-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.media-card {
  background: #fff;
  overflow: hidden;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.media-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.media-card .media-wrapper {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.media-card .media-wrapper video,
.media-card .media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-wrapper video,
.media-card:hover .media-wrapper img {
  transform: scale(1.05);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button i {
  font-size: 40px;
  color: var(--light-bg);
}

.video-thumbnail:hover .play-button {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(75, 120, 187, 0.5);
}

.read-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.read-more-overlay i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.read-more-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.media-wrapper:hover .read-more-overlay {
  opacity: 1;
}

.media-card .content-wrapper {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.media-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.media-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.btn-view-all {
  background: transparent;
  color: var(--secondary-color);
  padding: 14px 40px;
  border: 2px solid var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
}

.btn-view-all:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75, 120, 187, 0.3);
}

/* Video Modal Styles */
.modal-content {
  background: var(--secondary-color);
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.modal-header {
  padding: 15px 20px;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.btn-close-white:hover {
  opacity: 1;
}

/* About Us Section */
.about-section {
  background: #fff;
  padding: 100px 0;
}

.about-section .section-title {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.about-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-content {
  padding-left: 30px;
}

.about-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-full-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.about-full-content.show {
  max-height: 2000px;
  opacity: 1;
}

.btn-read-more {
  background: transparent;
  color: var(--secondary-color);
  padding: 12px 35px;
  border: 2px solid var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 10px;
  cursor: pointer;
}

.btn-read-more:hover {
  background: var(--primary-color);
  color: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75, 120, 187, 0.3);
}

.btn-read-more i {
  transition: transform 0.3s ease;
}

.btn-read-more.active i {
  transform: rotate(180deg);
}

.about-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
  position: sticky;
  top: 100px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 15px;
}

.about-image-wrapper .carousel {
  border-radius: 15px;
  overflow: hidden;
}

.about-image-wrapper .carousel-inner,
.about-image-wrapper .carousel-item {
  height: 500px;
  border-radius: 15px;
}

.about-image-wrapper .carousel-item img {
  position: relative;
  top: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-image-wrapper .carousel-control-prev,
.about-image-wrapper .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image-wrapper:hover .carousel-control-prev,
.about-image-wrapper:hover .carousel-control-next {
  opacity: 1;
}

.about-image-wrapper .carousel-control-prev:hover,
.about-image-wrapper .carousel-control-next:hover {
  background: var(--primary-color);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-wrapper .carousel-item:hover img {
  transform: none;
}

.about-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.about-image-overlay .years {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.about-image-overlay .text {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-image-wrapper img {
    position: relative;
    top: 0;
    height: 350px;
  }

  .about-image-wrapper .carousel-inner,
  .about-image-wrapper .carousel-item {
    height: 350px;
  }

  .about-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-image-wrapper img {
    height: 350px;
  }

  .about-image-wrapper .carousel-inner,
  .about-image-wrapper .carousel-item {
    height: 350px;
  }

  .about-image-overlay {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
  }

  .about-image-overlay .years {
    font-size: 2rem;
  }
}

/* Section Styles */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-desc {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Products Section */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6a9fd8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  font-size: 2rem;
  color: var(--secondary-color);
}

.product-content {
  padding: 0 2rem 2rem;
  text-align: center;
}

.product-content h4 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.product-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Working Hours */
.working-hours {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.working-hours h5 {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
  color: #666;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span.status {
  color: #28a745;
  font-weight: 500;
}

.hours-list li span.status.closed {
  color: #dc3545;
}

/* Map Section */
.map-section {
  padding: 0;
  height: 400px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(75, 120, 187, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: #3a60a0;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-slider {
    height: auto; /* Tablet/mobilde otomatik yükseklik ile kırpılmayı engelle */
    margin-top: 92px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: auto;
  }

  .slide-image {
    height: auto;
  }

  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    opacity: 1;
  }

  .hero-slider .carousel-control-prev {
    left: 15px;
  }

  .hero-slider .carousel-control-next {
    right: 15px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
  }

  .video-image-section {
    padding: 60px 0;
  }

  .media-card .media-wrapper {
    height: 280px;
  }

  .media-card .content-wrapper {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    margin-top: 92px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-slider .carousel-indicators {
    bottom: 15px;
  }

  .hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .video-image-section {
    padding: 50px 0;
  }

  .video-image-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .media-card .media-wrapper {
    height: 220px;
  }

  .media-card .content-wrapper {
    padding: 16px;
  }

  .media-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .media-card p {
    font-size: 0.88rem;
  }

  .play-button {
    width: 55px;
    height: 55px;
  }

  .play-button i {
    font-size: 28px;
  }

  .btn-view-all {
    margin-top: 25px;
    padding: 11px 28px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero-slider .carousel-control-prev-icon,
  .hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }

  .hero-slider .carousel-indicators {
    bottom: 10px;
  }

  .hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
  }

  /* Video kartı küçük ekranlarda tam genişlik */
  .media-card .media-wrapper {
    height: 200px;
  }

  .media-card .content-wrapper {
    padding: 14px;
  }

  .video-image-section {
    padding: 35px 0;
  }

  .video-image-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  /* Modal küçük ekranlarda kenar boşluğu */
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* Page Header Section */
.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
  padding: 60px 0;
  margin-top: 92px;
  text-align: center;
  color: #fff;
  position: relative;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  justify-content: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

/* ========================
   Cookie Consent Banner
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--secondary-color);
  border-top: 3px solid var(--primary-color);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(75, 120, 187, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-banner__text a:hover {
  color: #6a9fd8;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.cookie-btn--accept:hover {
  background: #3a60a0;
  border-color: #3a60a0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 120, 187, 0.45);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}
