/* Override / extend for the new layout */
.footer-main {
    display: flex;
    flex-wrap: wrap;
}

.footer-main-col {
    flex: 1 1 50%;
    padding: 50px;
    box-sizing: border-box;
}

.footer-info {
    border-right: 1px solid #2a2a2a;
}

.footer-subscribe {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Store info, hours, payments */
.footer-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
}

.footer-info h4 i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

.footer-info p, .footer-info li {
    font-size: 14px;
    color: #d1cdc4;
    line-height: 1.7;
    margin: 0 0 4px 0;
}

.footer-info a {
    color: #fcf9f2;
    text-decoration: none;
}
.footer-info a:hover {
    text-decoration: underline;
}

.store-address, .working-hours, .payment-methods {
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 25px;
}
.store-address:last-child,
.working-hours:last-child,
.payment-methods:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.working-hours ul li {
    margin-bottom: 2px;
}
.working-hours .holiday-note {
    color: #fcf9f2;
    margin-top: 6px;
    font-style: italic;
}

.payment-methods .method {
    margin-bottom: 15px;
}
.payment-methods .method:last-child {
    margin-bottom: 0;
}
.payment-methods .method-title {
    color: #fcf9f2;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}
.payment-methods .instructions {
    font-style: italic;
    color: #fcf9f2;
    font-size: 13px;
    margin-top: 4px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .footer-main-col {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1px solid #2a2a2a;
    }
    .footer-main-col:last-child {
        border-bottom: none;
    }
    .subscribe-col p {
        max-width: 100%;
    }
}

/* Ensure two columns with even width */
.footer-main {
    display: flex;
    flex-wrap: wrap;
}

.footer-main-col {
    flex: 1 1 50%;
    padding: 50px;
    box-sizing: border-box;
}

.footer-info {
    border-right: 1px solid #2a2a2a;
}

.footer-payments {
    /* no extra border */
}

/* Style headings and text in both columns */
.footer-main-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-main-col h4 i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

.footer-main-col p, .footer-main-col li {
    font-size: 14px;
    color: #d1cdc4;
    line-height: 1.7;
    margin: 0 0 4px 0;
}

.footer-main-col a {
    color: #fcf9f2;
    text-decoration: none;
}
.footer-main-col a:hover {
    text-decoration: underline;
}

.store-address, .working-hours {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2a2a2a;
}
.store-address:last-child,
.working-hours:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.working-hours ul li {
    margin-bottom: 2px;
}
.working-hours .holiday-note {
    color: #fcf9f2;
    margin-top: 6px;
    font-style: italic;
}

/* Payment Methods right column */
.method {
    margin-bottom: 20px;
}
.method:last-child {
    margin-bottom: 0;
}
.method-title {
    color: #fcf9f2;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}
.instructions {
    font-style: italic;
    color: #fcf9f2;
    font-size: 13px;
    margin-top: 4px;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
    .footer-main-col {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1px solid #2a2a2a;
    }
    .footer-main-col:last-child {
        border-bottom: none;
    }
}