/* ==========================================
   GESTION DAOUD - DESIGN SYSTEM
   Refactored from WordPress/Elementor
   ========================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary: #00929A;
  --primary-dark: #007a80;
  --primary-light: #5cc5ca;
  --secondary: #243040;
  --secondary-light: #616e79;
  --accent: #00a99d;
  --text-dark: #243040;
  --text-body: #616e79;
  --text-light: #8d99a5;
  --bg-white: #ffffff;
  --bg-light: #f2f9f9;
  --bg-dark: #1a2a3a;
  --bg-gradient-start: #1a2a3a;
  --bg-gradient-end: #243040;
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 1px 5px rgba(0, 0, 0, 0.13);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;
  --font-primary: 'Onest', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
  background: var(--secondary);
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
}

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

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__contact a,
.top-bar__contact span {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.top-bar__contact a:hover {
  color: var(--primary-light);
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar__social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.top-bar__social a:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.top-bar__lang {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.top-bar__lang a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.top-bar__lang a.active,
.top-bar__lang a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

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

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header__logo img {
  height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  padding: 8px 16px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 60%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: var(--transition);
}

.header__cta::after {
  display: none !important;
}

.header__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 146, 154, 0.3);
  color: #fff !important;
}

.header__cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile toggle */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: 48% 43%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 620px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  padding: 60px 50px;
  box-shadow: var(--shadow-card);
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

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

.hero__title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 146, 154, 0.3);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================
   MISSION SECTION
   ========================================== */
.mission {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.mission__title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.mission__title .dot {
  color: var(--primary);
}

.mission__text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ==========================================
   SERVICES CARDS
   ========================================== */
.services-grid {
  padding: 0 0 80px;
}

.services-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  transition: var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(0deg, rgba(0, 146, 154, 0.85) 0%, rgba(0, 146, 154, 0.3) 60%);
}

.service-card__title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-card__desc {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
  padding: 100px 0;
  background: var(--bg-light);
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.why-us__title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-us__title .dot {
  color: var(--primary);
}

.why-us__subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.why-us__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
}

.feature-item:not(:last-child) .feature-item__number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 28px;
  background: rgba(0, 146, 154, 0.2);
  transform: translateX(-50%);
}

.feature-item__content h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.feature-item__content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================
   CLIENTELE
   ========================================== */
.clientele {
  padding: 80px 0;
  background: var(--bg-white);
}

.clientele__divider {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.clientele__divider::before,
.clientele__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 180px);
  height: 1px;
  background: var(--border-light);
}

.clientele__divider::before {
  left: 0;
}

.clientele__divider::after {
  right: 0;
}

.clientele__divider span {
  display: inline-block;
  padding: 8px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.clientele__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.clientele-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  transition: var(--transition);
}

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

.clientele-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}

.clientele-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ==========================================
   CTA
   ========================================== */
.cta {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.cta__title {
  font-size: 2.4rem;
  line-height: 1.3;
}

.cta__title .highlight {
  color: var(--primary);
}

.cta__text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary-light);
  transform: translateX(6px);
  display: inline-block;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
  color: var(--primary-light);
}

/* User menu in header */
.user-role-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.user-role-badge--admin {
  background: #e8f4fd;
  color: #2980b9;
}
.user-role-badge--client {
  background: #e8f5e9;
  color: #27ae60;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ==========================================
   SERVICE PAGES
   ========================================== */
.service-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 146, 154, 0.85) 0%, rgba(36, 48, 64, 0.9) 100%);
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 16px;
}

.service-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.service-content {
  padding: 80px 0;
}

.service-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.service-content__main p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 24px;
}

.service-content__sidebar {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.service-content__sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.service-content__sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-content__sidebar li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
  padding: 80px 0;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  transition: var(--transition);
}

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

.contact-info__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info__text h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info__text p,
.contact-info__text a {
  color: var(--text-body);
  font-size: 0.95rem;
}

.contact-info__text a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 146, 154, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================
   404 PAGE
   ========================================== */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.page-404 h1 {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.page-404 p {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__toggle {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
  }

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

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

  .mission .container,
  .why-us .container,
  .cta .container,
  .contact-section .container,
  .service-content .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .clientele__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hero__content {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .top-bar {
    display: none;
  }
}

@media (max-width: 768px) {

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

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

  .footer__bottom-inner {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    min-height: 60vh;
  }

  .mission__title,
  .why-us__title,
  .cta__title {
    font-size: 2rem;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .clientele__divider::before,
  .clientele__divider::after {
    width: calc(50% - 120px);
  }
}

/* ==========================================
   COOKIE AGREEMENT
   ========================================== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(36, 48, 64, 0.97);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.cookie-notice__content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-notice__icon {
  font-size: 2rem;
  color: var(--primary-light);
  min-width: 48px;
  text-align: center;
}

.cookie-notice__text {
  flex: 1;
}

.cookie-notice__text h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.cookie-notice__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-notice__text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-notice__text a:hover {
  color: #fff;
}

.cookie-notice__actions {
  display: flex;
  gap: 10px;
  min-width: fit-content;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.cookie-btn--accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-notice__content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-notice__actions {
    width: 100%;
    justify-content: center;
  }
}