/**
 * Luxury Footer - Version 2.0
 *
 * @package HonerJewellery
 */

.hjw-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 25px 30px;
    margin-top: 50px;
    clear: both;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hjw-width-full {
    width: 100% !important;
    max-width: 100% !important;
}

.hjw-width-boxed .hjw-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hjw-footer-inner {
    margin: 0 auto;
}

.hjw-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.hjw-footer-col h4 {
    color: #c9a96e;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hjw-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hjw-footer-links li {
    margin-bottom: 8px;
}

.hjw-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hjw-footer-links a:hover {
    color: #c9a96e;
}

.hjw-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hjw-footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.hjw-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hjw-footer-contact a:hover {
    color: #c9a96e;
}

.hjw-footer-social {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.hjw-footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    transition: all 0.3s ease;
}

.hjw-footer-social a:hover {
    color: #c9a96e;
    transform: translateY(-3px);
}

.hjw-footer-newsletter {
    margin-top: 16px;
}

.hjw-footer-newsletter h4 {
    margin-bottom: 10px;
}

.hjw-footer-newsletter form {
    display: flex;
    gap: 8px;
}

.hjw-footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.hjw-footer-newsletter input:focus {
    border-color: #c9a96e;
}

.hjw-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hjw-footer-newsletter button {
    padding: 10px 20px;
    background: #c9a96e;
    color: #1a1a2e;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjw-footer-newsletter button:hover {
    background: #b8965a;
    transform: scale(1.02);
}

.hjw-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hjw-footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.hjw-footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hjw-payment-icon {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hjw-payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.hjw-payment-icon svg {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .hjw-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .hjw-footer {
        padding: 40px 20px 25px;
    }
}

@media (max-width: 576px) {
    .hjw-footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .hjw-footer {
        padding: 30px 15px 20px;
    }
    .hjw-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hjw-footer-newsletter form {
        flex-direction: column;
    }
    .hjw-footer-newsletter button {
        width: 100%;
    }
    .hjw-footer-payments {
        justify-content: center;
    }
    .hjw-footer-social {
        justify-content: center;
    }
    .hjw-footer-col h4 {
        text-align: center;
    }
    .hjw-footer-links {
        text-align: center;
    }
    .hjw-footer-contact {
        text-align: center;
    }
}

/* ============================================================
   PAYMENT ICONS - DARK FOOTER STYLE
   ============================================================ */

.hjw-footer-payments {
    display: flex;
    align-items: center;
    gap: 15px; /* අයිකන අතර පරතරය */
    flex-wrap: wrap;
    margin-top: 10px;
}

.hjw-footer-payments .hjw-payment-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important; /* අයිකන සුදු පාටට */
    font-size: 28px !important; /* අයිකන ප්‍රමාණය */
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hjw-footer-payments .hjw-payment-icon-link:hover {
    color: #c9a96e !important; /* හෝවර් කරනකොට රන්වන් පාටට */
    opacity: 1;
    transform: translateY(-2px);
}

/* SVG අයිකන භාවිතා කරනවා නම් (ඔබේ කලින් කේතයේ වගේ) */
.hjw-footer-payments .hjw-payment-icon-link svg {
    width: 38px !important; /* SVG ප්‍රමාණය */
    height: 24px !important;
    fill: #ffffff !important; /* SVG පිරවීම සුදු පාටට */
    transition: fill 0.3s ease;
}
.hjw-footer-payments .hjw-payment-icon-link:hover svg {
    fill: #c9a96e !important; /* Hover කරනකොට රන්වන් */
}

/* ============================================================
   SOCIAL ICONS - FORCE SHOW
   ============================================================ */

.hjw-footer-social {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    margin-top: 10px !important;
}

.hjw-footer-social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important; /* අයිකන සුදු පාටට */
    font-size: 24px !important; /* අයිකන ප්‍රමාණය */
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important; /* අයිකන අදෘශ්‍යමාන නොවීමට */
    visibility: visible !important; /* අයිකන පෙන්වීමට බල කිරීම */
}

.hjw-footer-social a:hover {
    color: #c9a96e !important; /* හෝවර් කරනකොට රන්වන් */
    transform: translateY(-3px) !important;
}

/* අයිකන වලට අදාළ Font Awesome පන්ති */
.hjw-footer-social a i,
.hjw-footer-social a svg {
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
}

/* ============================================================
   FORCE FOOTER FULL WIDTH + SAFE INNER SPACING
   ============================================================ */

/* Footer background - full browser width */
.hjw-footer {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    /* Keep content away from screen edges */
    padding-left: 25px !important;
    padding-right: 25px !important;

    box-sizing: border-box !important;
}

/* Inner footer content */
.hjw-footer-inner {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Full-width mode */
.hjw-width-full {
    width: 100% !important;
    max-width: none !important;
}

/* Tablet */
@media (max-width: 992px) {
    .hjw-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hjw-footer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============================================================
   FOOTER - TRUE FULL SCREEN WIDTH
   ============================================================ */

.hjw-footer {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    box-sizing: border-box !important;
}

/* ============================================================
   FOOTER - FULL BLEED ALL DEVICES
   Desktop + Tablet + Mobile
   ============================================================ */

.hjw-footer {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    box-sizing: border-box !important;
}

/* Mobile - keep footer touching both screen edges */
@media (max-width: 576px) {
    .hjw-footer {
        width: 100vw !important;
        max-width: 100vw !important;

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;

        /* Keep text safely inside */
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}





