/**
 * Hemp Medical Footer Styles
 * Adapted from Aura Care footer design
 */

/* HIDE SHOPTIMIZER DEFAULT FOOTER */
.site-footer,
#colophon,
.footer-widgets,
.below-content,
.copyright {
    display: none !important;
}

/* CUSTOM FOOTER WRAPPER */
.hm-custom-footer {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: #1f2937;
    background-color: #fff;
}

/* ============================================
   MAIN FOOTER — BLACK BACKGROUND, 4 COLUMNS
   ============================================ */
.hm-footer-main {
    background-color: #000000;
    border-top: 1px solid #4b5563;
    padding: 3rem 0;
}

.hm-footer-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hm-footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hm-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hm-footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Column headings */
.hm-footer-column h3 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: white;
    text-transform: uppercase;
}

/* Column link lists */
.hm-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-footer-column ul li {
    margin-bottom: 0.5rem;
}

.hm-footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.hm-footer-column ul li a:hover {
    color: white;
}

/* Company info block */
.hm-footer-company-info {
    line-height: 1.3;
}

.hm-footer-company-info > div {
    margin-bottom: 1rem;
}

.hm-footer-company-info .company-name {
    font-weight: 500;
    color: #d1d5db;
    font-size: 0.875rem;
}

.hm-footer-company-info .company-details {
    color: #d1d5db;
    font-size: 0.875rem;
}

.hm-footer-company-info .company-contact a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.hm-footer-company-info .company-contact a:hover {
    color: white;
}

.hm-footer-company-info .company-bank {
    font-family: monospace;
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Social icons */
.hm-footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hm-footer-social a {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.hm-footer-social a:hover {
    color: white;
}

.hm-footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   FOOTER BOTTOM — PAYMENT & COPYRIGHT
   ============================================ */
.hm-footer-bottom {
    background-color: #000000;
    border-top: 1px solid #2a2a2a;
    padding: 1.5rem 0;
}

.hm-footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.hm-footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .hm-footer-bottom-content {
        flex-direction: row;
    }
}

/* Copyright text */
.hm-footer-copyright {
    font-size: 0.75rem;
    color: #d1d5db;
}

.hm-footer-copyright p {
    margin: 0;
}

@media (max-width: 1023px) {
    .hm-footer-copyright {
        text-align: center;
    }
}

/* Payment icons row */
.hm-payment-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
}

.hm-payment-icons::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .hm-payment-icons {
        overflow: visible;
    }
}

.hm-payment-icons img {
    height: 1.25rem;
    width: auto;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .hm-payment-icons img {
        height: 1.5rem;
    }
}
