/* ===========================
   GEORGIUS Brand Stylesheet
   =========================== */

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

:root {
    /* Color Palette */
    --white: #FFFFFF;
    --wa-charcoal: #2A2A2A;
    --deep-navy: #0B1C2D;

    /* Typography */
    --font-hack: 'Hack', monospace;

    /* Spacing */
    --header-height: 80px;
    --header-height-small: 60px;
    --container-max: 1400px;
    --spacing-unit: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-hack);
    font-weight: 400;
    color: var(--wa-charcoal);
    background-color: var(--white);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

/* ===========================
   Header
   =========================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Hide header initially only on homepage */
body.homepage #header {
    transform: translateY(-100%);
    opacity: 0;
}

body.homepage #header.visible {
    transform: translateY(0);
    opacity: 1;
}

#header.scrolled {
    height: var(--header-height-small);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 5);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-hack);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--wa-charcoal);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.nav a {
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--wa-charcoal);
    text-decoration: none;
    letter-spacing: 0.12em;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--wa-charcoal);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    opacity: 0.7;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none !important;
    color: var(--wa-charcoal);
    margin-left: calc(var(--spacing-unit) * 8);
    transition: opacity 0.3s ease;
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.cart-icon:hover {
    opacity: 0.7;
}

.cart-icon::after {
    display: none !important;
}

/* ===========================
   Hamburger Menu
   =========================== */

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--wa-charcoal);
    transition: all 0.3s ease;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 5);
    gap: calc(var(--spacing-unit) * 6);
}

.mobile-nav a {
    font-family: var(--font-hack);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--wa-charcoal);
    text-decoration: none;
    letter-spacing: 0.12em;
    padding: calc(var(--spacing-unit) * 3) 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    transition: opacity 0.3s ease;
}

.mobile-nav a:hover {
    opacity: 0.6;
}

body.menu-open {
    overflow: hidden;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    position: absolute;
    bottom: calc(var(--spacing-unit) * 10);
    left: calc(var(--spacing-unit) * 10);
    color: var(--white);
    z-index: 10;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-brand {
    font-family: var(--font-hack);
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.15em;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: var(--font-hack);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Home About Section
   =========================== */

.home-about-section {
    padding: calc(var(--spacing-unit) * 20) 0;
    background-color: var(--white);
}

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

.home-about-text {
    font-family: var(--font-hack);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: var(--wa-charcoal);
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* First paragraph - slide in from left */
.home-about-text:nth-child(1) {
    transform: translateX(-60px);
}

.home-about-section.visible .home-about-text:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

/* Second paragraph - slide in from right */
.home-about-text:nth-child(2) {
    transform: translateX(60px);
}

.home-about-section.visible .home-about-text:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

/* Third paragraph - slide in from left */
.home-about-text:nth-child(3) {
    transform: translateX(-60px);
}

.home-about-section.visible .home-about-text:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.home-about-text:first-child {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
}

/* ===========================
   Collection Preview
   =========================== */

.collection-preview {
    padding: calc(var(--spacing-unit) * 15) 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 5);
}

.section-title {
    font-family: var(--font-hack);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.view-all {
    display: block;
    text-align: center;
    font-family: var(--font-hack);
    font-size: 0.9rem;
    color: var(--wa-charcoal);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.view-all:hover {
    opacity: 0.6;
}

/* ===========================
   Products Section
   =========================== */

.products-section {
    margin-top: var(--header-height);
    padding: calc(var(--spacing-unit) * 15) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 10);
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: calc(var(--spacing-unit) * 4);
    background-color: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card:hover .product-image {
    opacity: 0.7;
    transform: scale(1.02);
}

.product-name {
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.product-price {
    font-family: var(--font-hack);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--wa-charcoal);
}

/* ===========================
   Product Detail Page
   =========================== */

.product-detail-section {
    margin-top: var(--header-height);
    padding: calc(var(--spacing-unit) * 15) 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: calc(var(--spacing-unit) * 12);
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f5f5f5;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 5);
}

.product-detail-name {
    font-family: var(--font-hack);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.product-detail-price {
    font-family: var(--font-hack);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.product-size-selector {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.product-size-selector label {
    font-family: var(--font-hack);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.size-select {
    width: 100%;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    font-family: var(--font-hack);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    border: 1px solid var(--wa-charcoal);
    background-color: var(--white);
    color: var(--wa-charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-select:hover {
    background-color: rgba(42, 42, 42, 0.03);
}

.size-select:focus {
    outline: none;
    border-color: var(--deep-navy);
}

.add-to-cart-btn {
    width: 100%;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    background-color: var(--deep-navy);
    color: var(--white);
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #152a43;
}

.add-to-cart-btn:active {
    transform: translateY(1px);
}

.product-description {
    margin-top: calc(var(--spacing-unit) * 3);
    padding-top: calc(var(--spacing-unit) * 5);
    border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.product-description p {
    font-family: var(--font-hack);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.06em;
}

.product-description-ja {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: rgba(42, 42, 42, 0.7);
    margin-top: calc(var(--spacing-unit) * 3);
}

/* ===========================
   About Page
   =========================== */

.about-section {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 120px);
    padding: calc(var(--spacing-unit) * 20) 0;
}

.about-content {
    max-width: 600px;
}

.about-text {
    font-family: var(--font-hack);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.08em;
    margin-bottom: calc(var(--spacing-unit) * 8);
    text-align: left;
}

/* ===========================
   Contact Page
   =========================== */

.contact-section {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 120px);
    padding: calc(var(--spacing-unit) * 20) 0;
}

.contact-content {
    max-width: 600px;
}

.contact-text {
    font-family: var(--font-hack);
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.08em;
    text-align: left;
}

.contact-text a {
    color: var(--wa-charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--wa-charcoal);
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.6;
}

/* ===========================
   Footer
   =========================== */

.footer {
    padding: calc(var(--spacing-unit) * 8) 0;
    text-align: center;
    border-top: 1px solid rgba(42, 42, 42, 0.08);
}

.footer p {
    font-family: var(--font-hack);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--wa-charcoal);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --header-height-small: 60px;
    }

    .header-container {
        padding: 0 calc(var(--spacing-unit) * 3);
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Hide desktop navigation on mobile */
    .nav {
        display: none;
    }

    /* Show cart icon on mobile */
    .cart-icon {
        display: block;
    }

    .logo {
        font-size: 1.1rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .products-section {
        padding: calc(var(--spacing-unit) * 10) 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 12);
    }

    .container {
        padding: 0 calc(var(--spacing-unit) * 3);
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 8);
    }

    .product-detail-name {
        font-size: 1.3rem;
    }

    .about-section,
    .contact-section {
        padding: calc(var(--spacing-unit) * 12) 0;
    }

    .about-text,
    .contact-text {
        font-size: 0.95rem;
    }

    .hero-text {
        bottom: calc(var(--spacing-unit) * 8);
        top: auto;
        left: calc(var(--spacing-unit) * 3);
        right: auto;
    }

    .hero-brand {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .home-about-section {
        padding: calc(var(--spacing-unit) * 12) 0;
    }

    .home-about-text {
        font-size: 1rem;
    }

    .home-about-text:first-child {
        font-size: 1.15rem;
    }
}

@media (min-width: 769px) {

    /* Hide hamburger menu on desktop */
    .hamburger-menu {
        display: none;
    }

    /* Hide mobile menu on desktop */
    .mobile-menu {
        display: none;
    }

    /* Show desktop navigation */
    .nav {
        display: flex;
    }

    /* Desktop header layout */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo stays on left */
    .logo {
        margin-right: auto;
    }

    /* Navigation and cart icon group on right */
    .nav {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .nav a {
        font-size: 0.7rem;
    }

    .nav {
        gap: calc(var(--spacing-unit) * 3);
    }
}

/* ===========================
   Coming Soon Placeholder
   =========================== */

.coming-soon {
    position: relative;
}

.coming-soon::before {
    content: 'COMING SOON';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--wa-charcoal);
    z-index: 1;
}

.coming-soon img {
    visibility: hidden;
}

/* ===========================
   Cart Page
   =========================== */

.cart-section {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 120px);
    padding: calc(var(--spacing-unit) * 15) 0;
}

.cart-title {
    font-family: var(--font-hack);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.cart-items {
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing-unit) * 5);
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    gap: calc(var(--spacing-unit) * 5);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background-color: #f5f5f5;
    position: relative;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-hack);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.cart-item-details {
    font-family: var(--font-hack);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(42, 42, 42, 0.7);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.cart-item-price {
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
    align-items: flex-end;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    border: 1px solid var(--wa-charcoal);
    padding: calc(var(--spacing-unit) * 1);
}

.qty-btn {
    font-family: var(--font-hack);
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    color: var(--wa-charcoal);
    transition: opacity 0.3s ease;
}

.qty-btn:hover {
    opacity: 0.6;
}

.quantity {
    font-family: var(--font-hack);
    font-size: 0.9rem;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    font-family: var(--font-hack);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    color: var(--wa-charcoal);
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.remove-btn:hover {
    opacity: 0.6;
}

.cart-empty {
    text-align: center;
    padding: calc(var(--spacing-unit) * 15) 0;
}

.cart-empty p {
    font-family: var(--font-hack);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.continue-shopping {
    display: inline-block;
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--wa-charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--wa-charcoal);
    transition: opacity 0.3s ease;
}

.continue-shopping:hover {
    opacity: 0.6;
}

.cart-summary {
    margin-top: calc(var(--spacing-unit) * 8);
    padding-top: calc(var(--spacing-unit) * 5);
    border-top: 2px solid var(--wa-charcoal);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-hack);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.checkout-btn {
    width: 100%;
    padding: calc(var(--spacing-unit) * 4);
    background-color: var(--deep-navy);
    color: var(--white);
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #152a43;
}

.checkout-btn:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--spacing-unit) * 4);
    }

    .cart-item-controls {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===========================
   Success Page
   =========================== */

.success-section {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 120px);
    padding: calc(var(--spacing-unit) * 20) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-title {
    font-family: var(--font-hack);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.success-message {
    font-family: var(--font-hack);
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.08em;
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.success-actions {
    margin-top: calc(var(--spacing-unit) * 8);
}

.continue-shopping-btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 6);
    background-color: var(--deep-navy);
    color: var(--white);
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background-color: #152a43;
}

/* ===========================
   Notification Message
   =========================== */

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    color: var(--wa-charcoal);
    padding: calc(var(--spacing-unit) * 8);
    font-family: var(--font-hack);
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    text-align: center;
}

.notification-title {
    font-family: var(--font-hack);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.notification-message {
    font-family: var(--font-hack);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.notification-buttons {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
}

.notification-btn {
    font-family: var(--font-hack);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.notification-btn-primary {
    background-color: var(--deep-navy);
    color: var(--white);
}

.notification-btn-primary:hover {
    background-color: #152a43;
}

.notification-btn-secondary {
    background-color: transparent;
    color: var(--wa-charcoal);
    border: 1px solid var(--wa-charcoal);
}

.notification-btn-secondary:hover {
    background-color: rgba(42, 42, 42, 0.05);
}

@media (max-width: 768px) {
    .notification {
        min-width: auto;
        width: 90%;
        max-width: 400px;
        padding: calc(var(--spacing-unit) * 6);
    }

    .notification-title {
        font-size: 1rem;
    }

    .notification-message {
        font-size: 0.85rem;
    }
}