:root {
    --primary: #2C5545;
    --primary-dark: #1A3530;
    --secondary: #B85C38;
    --accent: #D4A854;
    --bg-warm: #FAF7F2;
    --bg-section: #F0EBE3;
    --bg-dark: #1A3530;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;
    --text-light: #F5F0E8;
    --card-shadow: 0 4px 24px rgba(44, 85, 69, 0.08);
    --card-hover: 0 8px 40px rgba(44, 85, 69, 0.14);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--text-dark);
    background-color: var(--bg-warm);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}

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

a:hover {
    color: var(--secondary);
}

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

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.loader-inner {
    text-align: center;
}

.loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-scrolled {
    background: rgba(26, 53, 48, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.brand-accent {
    color: var(--accent);
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85) !important;
    padding: 8px 16px !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.navbar-toggler {
    border: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 8px;
    background: #fff;
}

.dropdown-item {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-dark);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--bg-section);
    color: var(--primary);
}

.offcanvas {
    background: var(--primary-dark);
    border-left: none;
}

.offcanvas-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-title .brand-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-body .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.offcanvas-body .dropdown-menu {
    background: rgba(255,255,255,0.06);
    box-shadow: none;
}

.offcanvas-body .dropdown-item {
    color: rgba(255,255,255,0.8);
}

.offcanvas-body .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--accent);
}

.offcanvas-articles {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-section-title {
    color: var(--accent);
    margin-bottom: 16px;
}

.offcanvas-article-link {
    display: block;
    color: rgba(255,255,255,0.8) !important;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.offcanvas-article-link:hover {
    color: var(--accent) !important;
    padding-left: 8px;
}

.offcanvas-article-link i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,53,48,0.85) 0%, rgba(44,85,69,0.6) 50%, rgba(184,92,56,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 120px 0 80px;
}

.hero-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-craft {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 4px;
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    display: inline-block;
    transition: var(--transition);
}

.btn-craft:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-craft-solid {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.btn-craft-solid:hover {
    background: transparent;
    color: var(--accent);
}

.section-padding {
    padding: 100px 0;
}

.section-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.featured-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.featured-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.featured-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(26,53,48,0.95));
    color: #fff;
}

.featured-main-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.featured-main-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}

.featured-card:hover {
    box-shadow: var(--card-hover);
    transform: translateY(-3px);
    color: var(--text-dark);
}

.featured-card img {
    width: 160px;
    min-height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}

.featured-card-body {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.featured-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.bg-section {
    background: var(--bg-section);
}

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

.bg-dark-section .section-label {
    color: var(--accent);
}

.bg-dark-section .section-title {
    color: #fff;
}

.bg-dark-section .section-text {
    color: rgba(255,255,255,0.7);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 8px;
    z-index: 0;
}

.quote-block {
    border-left: 4px solid var(--accent);
    padding: 24px 30px;
    margin: 30px 0;
    background: rgba(212,168,84,0.06);
    border-radius: 0 8px 8px 0;
}

.quote-block p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.crafts-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.crafts-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(44,85,69,0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.crafts-list li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.page-header {
    background: var(--primary-dark);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212,168,84,0.08));
}

.page-header h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-header .breadcrumb {
    margin-bottom: 20px;
}

.page-header .breadcrumb-item a {
    color: var(--accent);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

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

.article-body {
    max-width: 780px;
    margin: 0 auto;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.85;
}

.article-body h2 {
    font-size: 1.9rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.article-body h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.article-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    padding: 12px 20px;
    background: var(--bg-section);
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(44,85,69,0.1);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-meta i {
    margin-right: 6px;
}

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

.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    height: 100%;
}

.related-card:hover {
    box-shadow: var(--card-hover);
    transform: translateY(-4px);
    color: var(--text-dark);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card-body {
    padding: 24px;
}

.related-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.related-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-card a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-card a:hover {
    color: var(--secondary);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(44,85,69,0.1);
    background: transparent;
}

.accordion-button {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    padding: 20px 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: transparent;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C5545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.value-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.external-link {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.article-body ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-body ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 1.02rem;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

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

.policy-content h2 {
    font-size: 1.6rem;
    margin-top: 50px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.policy-content p,
.policy-content ul li {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.site-footer {
    background: var(--primary-dark);
    padding: 80px 0 0;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo .brand-accent {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-nav h6,
.footer-articles h6,
.footer-contact h6 {
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-articles ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-articles ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-articles ul li a {
    color: rgba(255,255,255,0.6);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-articles ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--accent);
}

.footer-update {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem !important;
    margin-top: 12px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.footer-credits a {
    color: var(--accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26,53,48,0.97);
    backdrop-filter: blur(12px);
    z-index: 9998;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
}

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

.cookie-banner.cookie-hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.cookie-text h6 {
    color: var(--accent);
    margin-bottom: 6px;
}

.cookie-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

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

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

.cookie-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--primary-dark);
}

.cookie-btn-accept:hover {
    background: #e0b85e;
}

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

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

.info-banner {
    background: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
}

.info-banner h2 {
    color: #fff;
    margin-bottom: 16px;
}

.info-banner p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-section {
        min-height: 70vh;
    }

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

    .featured-main img {
        height: 320px;
    }

    .about-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .featured-card {
        flex-direction: column;
    }

    .featured-card img {
        width: 100%;
        height: 180px;
    }

    .featured-card-body {
        padding: 20px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .quote-block p {
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

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