/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Colors */
    --primary-color: #f1f200;
    --primary-dark: #d4d400;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Fonts - Based on reference site */
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Poppins', 'Montserrat', 'Roboto', sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max-width: 1280px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

/* Header after scrolling past hero */
.header.scrolled-past-hero {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled-past-hero .logo img {
    filter: none;
}

.header.scrolled-past-hero .nav-link {
    color: var(--text-dark);
}

.header.scrolled-past-hero .nav-link:hover {
    color: var(--primary-color);
}

.header.scrolled-past-hero .lang-link {
    color: var(--text-medium);
}

.header.scrolled-past-hero .lang-link.active {
    color: var(--text-dark);
}

.header.scrolled-past-hero .lang-link:hover {
    color: var(--text-dark);
}

.header.scrolled-past-hero .lang-separator {
    color: var(--text-light);
}

.header.scrolled-past-hero .lang-icon {
    filter: none;
}

.header.scrolled-past-hero .menu-toggle {
    color: var(--text-dark);
}

.header-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}

.header .logo img {
    width: 170px;
    height: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-white);
    position: relative;
    transition: var(--transition-normal);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.lang-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.lang-link {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.lang-link.active {
    color: var(--bg-white);
    font-weight: 600;
}

.lang-link:hover {
    color: var(--bg-white);
}

.lang-separator {
    font-family: var(--font-en);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    border-radius: 60px;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Sticky Header - Removed, using header-desktop for all states */

.header-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}

/* Mobile Header */
.header-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.menu-toggle {
    font-size: 24px;
    color: var(--bg-white);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-logo {
    height: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-btn {
    width: 100%;
    justify-content: center;
}

.mobile-lang {
    justify-content: center;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-lang .lang-icon {
    filter: none;
    opacity: 1;
}

.mobile-lang .lang-link {
    color: var(--text-dark);
}

.mobile-lang .lang-link.active {
    color: var(--text-dark);
    font-weight: 600;
}

.mobile-lang .lang-separator {
    color: var(--text-medium);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    transition: var(--transition-normal);
}

.hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(241, 242, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    animation: fadeIn 1s ease 0.5s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

/* ===========================
   Products Section
   =========================== */
.products-section {
    padding: var(--section-padding) 60px;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even) > * {
    direction: ltr;
}

.product-content {
    padding: 40px 0;
}

.product-header {
    margin-bottom: 24px;
}

.product-title-en {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-title-ja {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-medium);
}

.product-icon {
    margin-bottom: 32px;
}

.product-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    object-fit: cover;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
}

.product-description p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
}

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

.product-link:hover::after {
    width: calc(100% - 30px);
}

.product-link i {
    transition: var(--transition-normal);
}

.product-link:hover i {
    transform: translateX(4px);
}

.product-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(241, 242, 0, 0.1) 0%, rgba(241, 242, 0, 0.3) 100%);
    border-radius: 50%;
}

.product-1 {
    background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
}

.product-2 {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-3 {
    background: linear-gradient(135deg, #fafafa 0%, #ececec 100%);
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: var(--section-padding) 60px;
    background: var(--bg-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.about-text {
    font-size: 18px;
    line-height: 2;
    color: var(--text-medium);
    margin-top: 60px;
    margin-bottom: 80px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: all 0.5s ease;
}

.stat-number.infinity-symbol {
    font-size: 72px;
    transform: scale(1.1);
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
}

/* ===========================
   Company Section
   =========================== */
.company-section {
    padding: var(--section-padding) 60px;
    background: var(--bg-white);
}

.company-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

.company-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.company-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.company-table {
    text-align: left;
    border-top: 2px solid var(--border-color);
}

.company-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    gap: 40px;
}

.company-label {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 180px;
    flex-shrink: 0;
}

.company-value {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    flex: 1;
}

/* ===========================
   CTA Section (Removed)
   =========================== */
.cta-section {
    padding: 80px 60px;
    background: var(--bg-white);
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 80px;
    background: var(--primary-color);
    border-radius: 30px;
}

.cta-icon-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-dark);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--text-dark);
    color: var(--bg-white);
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.cta-button:hover {
    background: var(--text-medium);
    transform: translateY(-4px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 80px 60px 40px;
    background: var(--text-dark);
    color: var(--bg-white);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    gap: 40px;
}

.footer-logo {
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-company {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    transition: var(--transition-normal);
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-4px);
}

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

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
}

.legal-link:hover {
    color: var(--primary-color);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scroll {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 12px);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .header-desktop,
    .header-sticky {
        padding: 20px 40px;
    }
    
    .hero {
        padding: 100px 40px 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .products-section,
    .about-section {
        padding: var(--section-padding-mobile) 40px;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-card:nth-child(even) {
        direction: ltr;
    }
    
    .product-image {
        height: 400px;
    }
    
    .cta-content {
        padding: 40px 60px;
    }
    
    .footer {
        padding: 60px 40px 40px;
    }
}

@media (max-width: 768px) {
    .header-desktop,
    .header-sticky {
        display: none !important;
    }
    
    .header-mobile {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid {
        gap: 80px;
    }
    
    .product-info {
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 16px 16px;
        grid-template-areas:
            "icon header"
            "description description";
    }
    
    .product-icon {
        grid-area: icon;
        margin-bottom: 0;
        align-self: start;
    }
    
    .product-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .product-header {
        grid-area: header;
        margin-bottom: 0;
        align-self: center;
    }
    
    .product-description {
        grid-area: description;
    }
    
    .product-title-en {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .product-title-ja {
        font-size: 14px;
    }
    
    .product-image {
        height: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-section {
        padding: var(--section-padding-mobile) 40px;
    }
    
    .company-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-map {
        height: 300px;
    }
    
    .company-row {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }
    
    .company-label {
        min-width: auto;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 24px 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .products-section,
    .about-section {
        padding: 40px 24px;
    }
    
    .cta-section {
        padding: 40px 24px;
    }
    
    .footer {
        padding: 40px 24px 24px;
    }
}

/* Mobile break */
.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-br {
        display: block;
    }
}

/* ===========================
   Cookie Consent Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px 32px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text-wrapper {
    flex: 1;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.cookie-btn-reject:hover {
    background: var(--bg-light);
    border-color: var(--text-medium);
}

.cookie-btn-accept {
    background: var(--text-dark);
    color: var(--bg-white);
    border: 2px solid var(--text-dark);
}

.cookie-btn-accept:hover {
    background: var(--text-medium);
    border-color: var(--text-medium);
}

/* Cookie Settings Button (Floating) */
.cookie-settings-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-btn:hover {
    background: var(--text-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 24px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .cookie-title {
        font-size: 16px;
    }
    
    .cookie-text {
        font-size: 12px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column-reverse;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}
