@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

button {
    border: none;
}

body {
    background-color: #f3f4f6;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #374151;
}

.logo-container {
    position: fixed;
    width: 100%;
    top: 2vh;
    left: 9vw;
    text-align: left;
}

.logo {
    width: 88px;
    margin: auto;
}

.body-container {
    margin-top: 8vh;
    display: flex;
    flex-direction: column;
    padding: 2vh 8vw;
}

.calendar-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.025em;
    text-align: left;
    margin-top: auto;
    margin-bottom: 2vh;
}

.calendar-subtitle {
    display: none;
}

#addName {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: #FF4B4B;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 2vh;
}

#addName:hover {
    transition: all 0.3s ease-in-out;
    color: #ff2b2b;
}

#searchTermBtn {
    height: 34px;
    border-radius: 6px;
    margin: auto;
}

.calendar-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .calendar-container {
        flex-direction: row;
    }
}

.calendar-main {
    flex-grow: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-nav {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
}

.header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.025em;
}

.nav-btn {
    color: #4b5563;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FF4B4B, #ff2323);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 75, 75, 0.3);
}

.nav-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-btn:active {
    transform: scale(0.9);
    box-shadow: 0 2px 10px rgba(255, 75, 75, 0.4);
}

.search-bar {
    position: relative;
    max-width: 20rem;
}

.search-bar input {
    padding: 4px 0.4rem 4px 0.4rem;
    width: 200px;
    height: 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    outline: none;
    background: #e0e0e0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 0;
    margin: auto;
    transform: scale(1);
}

.search-bar input:focus {
    background: #f8f9fa;
    border-color: #FF4B4B;
    box-shadow: 0 0 0 3px rgba(255, 75, 75, 0.1);
    transform: scale(1.02);
}

.search-bar input:hover:not(:focus) {
    background: #d4d4d8;
    transform: scale(1.01);
}

#search-term {
    cursor: pointer;
    height: 38px;
    width: 38px;
    margin: auto;
    border-radius: 8px;
    background-color: #e0e0e0;
    border: 2px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

#search-term:hover {
    background-color: #FF4B4B;
    border-color: #ff2323;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 75, 75, 0.3);
}

#search-term:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(255, 75, 75, 0.4);
}

#search-term.loading {
    animation: pulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 75, 75, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 75, 75, 0.5);
    }
}

.search-icon {
    font-size: 1.4em;
    color: #FF4B4B;
    transition: color 0.2s ease;
}

#search-term:hover .search-icon {
    color: white;
}

/* Kalendāra tabula */
.weekday-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 800;
    color: #36393f;
    margin-bottom: 1.5rem;
}

.weekday-labels span {
    text-align: left;
    font-size: 0.8rem;
    margin-top: auto;
    margin-bottom: 0.2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.calendar-grid.transitioning {
    opacity: 0;
}

.day-cell {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 1rem 1rem 1rem 0rem;
    height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 0px;
    border-top: 1px solid grey;
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.day-cell.inactive {
    .day-number {
        color: #828283 !important;
    }
}


.day-number {
    transition: all 0.3s ease-in-out;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    position: absolute;
    top: 1rem;
    left: 0rem;
}

.day-term {
    transition: all 0.3s ease-in-out;
    font-size: 0.875rem;
    text-align: left;
    padding-top: 2rem;
    width: 100%;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.day-cell.today {
    color: #FF4B4B !important;
    font-weight: bold;
}

.day-cell.today .day-number {
    color: white !important;
    background-color: #FF4B4B !important;
    border-radius: 9999px;
    padding: 0.2rem 0.6rem;
}

.day-cell.highlight {
    span.day-number {
        padding-left: 12px;
        color: white;
    }

    padding-left: 12px;
    font-weight: bold;
    color: white;
    background: #ff5f5f;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(17, 24, 39, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(0px);
}

.modal-backdrop:not(.hidden) {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    max-width: 28rem;
    width: 100%;
    transform: scale(0.7) translateY(50px) rotateX(15deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
    opacity: 0;
}

.modal-backdrop:not(.hidden) .modal-content {
    transform: scale(1) translateY(0) rotateX(0deg);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.close-modal-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.close-modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ef4444;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-modal-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.close-modal-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.close-modal-btn:active {
    transform: scale(0.9) rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-body p {
    color: #4b5563;
    font-size: 1.125rem;
    font-weight: bold;
}


.modal-message {
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 600;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF4B4B, #ff2323);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 75, 75, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 75, 75, 0.4);
    background: linear-gradient(135deg, #ff2323, #FF4B4B);
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 15px rgba(255, 75, 75, 0.5);
}

.modal-input {
    padding: 4px 0.4rem 4px 0.4rem;
    width: 100%;
    height: 36px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #e0e0e0;
    margin: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: 0;
    margin: auto;
}

/* Custom Calendar Picker Styles */
.date-picker-container {
    position: relative;
    width: 100%;
}

.custom-calendar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 24px;
    z-index: 52;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 95vw;
    max-height: 70vh;
    overflow-y: auto;
}

@media screen and (min-width: 769px) {
    .custom-calendar {
        width: 700px;
        padding: 28px;
    }
}

.custom-calendar:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.calendar-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-picker-header span {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1f2937;
    letter-spacing: 0.02em;
}

.cal-nav-btn {
    background: transparent;
    border: none;
    color: #4b5563;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cal-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF4B4B, #ff2323);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cal-nav-btn i {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

.cal-nav-btn:hover {
    color: white;
    transform: scale(1.1);
}

.cal-nav-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.cal-nav-btn:active {
    transform: scale(0.9);
}

.calendar-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-picker-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    padding: 8px 0;
}

.calendar-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    color: #1f2937;
    background: transparent;
}

.cal-day:not(.cal-inactive):hover {
    background: #f3f4f6;
    transform: scale(1.08);
    color: #FF4B4B;
}

.cal-day.cal-inactive {
    color: #d1d5db;
    cursor: default;
    pointer-events: none;
}

.cal-day.cal-selected {
    background: linear-gradient(135deg, #FF4B4B, #ff2323);
    color: white;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 75, 75, 0.3);
}

.cal-day.cal-today {
    border: 2px solid #FF4B4B;
}

.cal-day.cal-today.cal-selected {
    border-color: white;
}

/* Hide mobile-only elements on desktop */
.mobile-date-header {
    display: none;
}

.mobile-add-btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-date-header {
        display: flex;
    }

    .mobile-add-btn {
        display: block;
    }

    .day-cell.today:not([data-term]) .day-number {
        display: none;
    }
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin: 0.5rem 0;
}

.checkbox-container label {
    cursor: pointer;
    user-select: none;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.modal-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #f3f4f6;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0;
}

.modal-checkbox:hover {
    border-color: #FF4B4B;
    background: #fff;
    transform: scale(1.05);
}

.modal-checkbox:checked {
    background: linear-gradient(135deg, #FF4B4B, #ff2323);
    border-color: #FF4B4B;
    transform: scale(1.05);
}

.modal-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.subscribe-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(255, 75, 75, 0.15);
}

.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 100;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
}

@media screen and (max-width: 768px) {

    .logo-container {
        position: fixed;
        top: 1rem;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 20;
        padding-bottom: 1rem;
    }

    .logo {
        width: 100px;
        margin: auto;
    }

    .search-bar {
        width: 100%;
    }

    .search-bar input {
        width: 264px;
    }

    .body-container {
        position: relative;
        justify-content: flex-start;
        padding: 1rem;
        padding-top: 7rem;
        margin-top: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding-bottom: 2rem;
    }

    .calendar-main {
        flex-grow: 0;
    }

    .mobile-add-btn {
        margin-top: 0 !important;
    }

    .calendar-subtitle {
        display: block;
        text-align: center;
        padding-bottom: 1em;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .weekday-labels {
        display: none;
    }

    .day-cell:not(.today) {
        display: none;
    }

    .day-cell.today {
        display: flex !important;
        border: 2px solid #FF4B4B;
        border-radius: 12px;
        min-height: 200px;
        text-align: center;
        padding: 1.5rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .day-cell.today:not([data-term]) {
        min-height: 250px;
        position: relative;
    }

    .day-cell.today:not([data-term]) .day-number {
        position: relative;
        top: auto;
        left: auto;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .header-nav {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .calendar-controls {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .calendar-title {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0.5rem;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
    }

    #addName {
        width: 100%;
        border: 1px solid #FF4B4B;
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
    }

    .mobile-date-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .mobile-month {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #FF4B4B;
        text-transform: uppercase;
    }

    .mobile-day-number {
        font-family: 'Montserrat', sans-serif;
        font-size: 4rem;
        font-weight: 800;
        color: #1f2937;
        line-height: 1;
    }

    .day-cell.today .mobile-add-btn {
        margin-top: auto;
        padding: 12px 24px;
        border: 2px solid #FF4B4B;
        background: white;
        color: #FF4B4B;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 0.02em;
    }

    .day-cell.today .mobile-add-btn:hover {
        background: #FF4B4B;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 75, 75, 0.3);
    }

    .day-cell.today .mobile-add-btn:active {
        transform: translateY(0);
    }

    .calendar-container {
        position: relative;
        width: 100%;
        background-color: transparent;
        padding: 0;
    }

    .calendar-grid {
        display: relative;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .day-term {
        transition: all 0.3s ease-in-out;
        font-size: 2rem;
        text-align: center;
        padding-top: 2rem;
        width: 100%;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .day-number {
        top: 0.2em;
        left: 0.2em;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: white !important;
        background-color: #FF4B4B !important;
        border-radius: 9999px;
        padding: 0.2rem 0.6rem;
    }

    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }

}

/* Footer Styles */
.footer-container {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 8vw;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    filter: grayscale(100%);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    text-align: right;
}

.footer-text,
.footer-copyright,
.footer-company,
.footer-address,
.footer-phone {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

.footer-phone a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}

.footer-copyright {
    margin-top: 2vh;
    font-size: 1rem;
    color: #1f2937;
}

.footer-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FF4B4B;
}

@media screen and (max-width: 768px) {
    .footer-container {
        padding: 1.5rem 1.5rem;
        margin-top: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-logo {
        height: 48px;
    }

    .footer-text,
    .footer-copyright,
    .footer-company,
    .footer-address,
    .footer-phone {
        font-size: 0.75rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}