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

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  height: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

a:not([class]):hover {
  text-decoration-line: underline;
}

a {
  text-decoration: none;
}

.wrap {
  word-wrap: break-word;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

:target {
  scroll-margin-block: 5ex;
}

/* =================== Font & Base Styles ============ */

body {
  font-family: "Inter", "Roboto", "Noto Sans Devanagari", sans-serif;
  color: #1a1a1a;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #f5f7fa;
  height: 100%;
}

:root {
  --primary-color: #2c5f8d;
  --secondary-color: #4a90a4;
  --accent-color: #f39c12;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --border-color: #e0e6ed;
  --gradient-primary: linear-gradient(135deg, #2c5f8d 0%, #4a90a4 100%);
  --gradient-accent: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.ocean-blue-theme {
  --primary-color: #2c5f8d;
  --secondary-color: #4a90a4;
  --accent-color: #f39c12;
}

.main-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

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

/* ================== HEADER START ================== */

.header-section {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
  gap: 50px;
  position: relative;
}

.logo-text {
  color: var(--bg-white);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
}

.logo-text:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.navigation-menu {
  display: flex;
}

.menu-list {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.menu-item {
  list-style: none;
}

.menu-link {
  color: var(--bg-white);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px;
  letter-spacing: 0.5px;
}

.menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.menu-link:hover::before {
  width: 80%;
}

.menu-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 35px;
  height: 30px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--bg-white);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.burger-menu.active span:nth-child(4) {
  display: none;
}

@media (max-width: 1024px) {
  .header-content {
    padding: 20px 0;
    justify-content: space-between;
  }

  .logo-text {
    position: static;
    font-size: 26px;
  }

  .menu-list {
    gap: 25px;
  }

  .menu-link {
    font-size: 15px;
  }

  .burger-menu {
    display: flex;
    position: static;
  }

  .navigation-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 18px 0;
  }

  .logo-text {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .header-content {
    justify-content: space-between;
  }

  .logo-text {
    order: 1;
  }

  .burger-menu {
    order: 3;
  }

  .navigation-menu {
    order: 2;
  }

  #mobileMenu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: fit-content;
    background: var(--gradient-primary);
    padding: 50px 0;
    display: block;
    transition: 0.5s ease-in-out;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  #mobileMenu.active {
    top: 70px;
  }

  .menu-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .menu-link {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .menu-link::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-link:hover {
    color: var(--accent-color);
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #mobileMenu.active {
    top: 60px;
  }

  .menu-link {
    font-size: 16px;
  }
}

.lock-scroll {
  overflow: hidden;
}

/* ================== HEADER END ================== */

/* ================== MAIN CONTENT START ================== */

.main-content {
  position: relative;
  flex: 1 0 auto;
}

/* ================== HERO BANNER START ================== */

.hero-banner {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.main-title {
  color: var(--bg-white);
  text-align: center;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.intro-text {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 850px;
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 60px 0;
  }

  .hero-content {
    gap: 25px;
    padding: 30px 0;
  }

  .main-title {
    font-size: 36px;
  }

  .intro-text {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-content {
    gap: 20px;
    padding: 20px 0;
  }

  .main-title {
    font-size: 28px;
  }

  .intro-text {
    font-size: 16px;
  }
}

/* ================== HERO BANNER END ================== */

/* ================== CAROUSEL START ================== */

.products-carousel-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.carousel-container {
  position: relative;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  min-height: 500px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  width: 100%;
}

.product-image-wrapper {
  flex: 0 0 450px;
  max-width: 450px;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #f0f0f0;
  position: relative;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(74, 144, 164, 0.1) 100%);
  z-index: 1;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-title {
  color: var(--primary-color);
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.product-description {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--bg-white);
  color: var(--primary-color);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

.dot:hover {
  background: var(--secondary-color);
}

@media (max-width: 968px) {
  .product-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .product-image-wrapper {
    flex: 1 1 auto;
    max-width: 100%;
    height: 400px;
  }

  .product-title {
    font-size: 32px;
    text-align: center;
  }

  .product-description {
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .products-carousel-section {
    padding: 50px 0;
  }

  .product-card {
    padding: 30px 20px;
    gap: 30px;
  }

  .product-image-wrapper {
    height: 300px;
  }

  .product-title {
    font-size: 26px;
  }

  .product-description {
    font-size: 15px;
  }

  .carousel-controls {
    margin-top: 30px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* ================== CAROUSEL END ================== */

/* ================== CONCLUSION SECTION START ================== */

.conclusion-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.conclusion-content {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-text {
  color: var(--text-dark);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 768px) {
  .conclusion-section {
    padding: 60px 0;
  }

  .conclusion-text {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .conclusion-section {
    padding: 40px 0;
  }

  .conclusion-text {
    font-size: 16px;
  }
}

/* ================== CONCLUSION SECTION END ================== */

/* ================== CONTACT FORM START ================== */

.contact-form-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 40px;
}

.form-title {
  color: var(--bg-white);
  text-align: center;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 18px;
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent-color);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

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

.submit-btn {
  width: 100%;
  padding: 18px 30px;
  border: none;
  border-radius: 50px;
  background: var(--gradient-accent);
  color: var(--bg-white);
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: var(--shadow-md);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .form-header {
    margin-bottom: 30px;
  }

  .form-title {
    font-size: 32px;
  }

  .form-subtitle {
    font-size: 18px;
  }

  .form-input {
    padding: 15px 20px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 15px 25px;
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .contact-form-section {
    padding: 40px 0;
  }

  .form-title {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 16px;
  }

  .form-input {
    padding: 12px 18px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* ================== CONTACT FORM END ================== */

/* ================== POLICY SECTION START ================== */

.policy-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.policy-title {
  color: var(--primary-color);
  text-align: left;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.policy-text {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.policy-text p {
  margin: 0 0 20px 0;
}

.policy-text ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 30px;
  gap: 10px;
  margin: 15px 0;
}

.policy-text li {
  margin: 0;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 60px 0;
  }

  .policy-content {
    gap: 40px;
  }

  .policy-title {
    font-size: 28px;
  }

  .policy-text {
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-content {
    gap: 30px;
  }

  .policy-title {
    font-size: 24px;
  }

  .policy-text {
    font-size: 15px;
  }

  .policy-text ul {
    padding-left: 20px;
  }
}

/* ================== POLICY SECTION END ================== */

/* ================== CONTACTS SECTION START ================== */

.contacts-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.contacts-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

.contacts-title {
  color: var(--primary-color);
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.contacts-details p {
  margin: 0;
}

.contacts-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts-details a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.contacts-map {
  flex: 1;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contacts-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

@media (max-width: 968px) {
  .contacts-content {
    flex-direction: column;
    gap: 40px;
  }

  .contacts-map {
    max-width: 100%;
  }

  .contacts-map iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contacts-section {
    padding: 60px 0;
  }

  .contacts-title {
    font-size: 32px;
  }

  .contacts-details {
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .contacts-section {
    padding: 40px 0;
  }

  .contacts-title {
    font-size: 26px;
  }

  .contacts-details {
    font-size: 15px;
  }

  .contacts-map iframe {
    height: 300px;
  }
}

/* ================== CONTACTS SECTION END ================== */

/* ================== MAIN CONTENT END ================== */

/* ================== FOOTER START ================== */

.footer-section {
  flex-shrink: 0;
  background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
  padding: 60px 0 30px 0;
  position: relative;
  border-top: 3px solid #0f3460;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 250px;
}

.copyright-text {
  color: #b8b8b8;
  text-align: left;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.5px;
}

.copyright-text:first-child {
  color: #ffd700;
  font-weight: 600;
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  min-width: 200px;
}

.footer-link {
  color: #e8e8e8;
  text-align: right;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-link:hover {
  color: #ffd700;
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 25px 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-copyright {
    align-items: center;
  }

  .copyright-text {
    text-align: center;
  }

  .copyright-text:first-child {
    font-size: 15px;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .footer-link {
    text-align: center;
  }

  .footer-link:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 568px) {
  .footer-section {
    padding: 40px 0 20px 0;
  }

  .copyright-text {
    font-size: 12px;
  }

  .copyright-text:first-child {
    font-size: 14px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* ================== FOOTER END ================== */

/* ================== COOKIES START ================== */

#hbgBDAgqmW-cookie {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 100%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    gap: 15px;
    z-index: 999999;
    font-size: 15px;
    color: #fff;
    flex-wrap: wrap;
}

#hbgBDAgqmW-cookie.show {
    display: flex;
}

#hbgBDAgqmW-cookie div {
    flex: 1;
    min-width: 200px;
}

#hbgBDAgqmW-cookie a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-accept-btn {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--gradient-accent);
    color: #fff;
    font-family: "Inter", "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 568px) {
    #hbgBDAgqmW-cookie {
        flex-direction: column;
        text-align: center;
        max-width: 95%;
        padding: 15px;
    }

    #hbgBDAgqmW-cookie div {
        width: 100%;
    }

    .cookie-accept-btn {
        width: 100%;
    }
}

/* ================== COOKIES END ================== */
