    /* ====================== UNIQUE FOOTER ====================== */
        .kic-footer {
            position: relative;
            background: #6c3c12;
            color: #f5e8d3;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            overflow: hidden;
        }

        /* Main Content */
        .kic-footer__container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 60px 40px 50px;
            display: flex;
            flex-wrap: wrap;
            gap: 70px;
            align-items: flex-start;
        }

        /* Left - Logo + Address */
        .kic-footer__info {
            flex: 1;
            min-width: 260px;
        }

        .kic-footer__logo {
            max-width: 190px;
            height: auto;
            margin-bottom: 22px;
        }

        .kic-footer__address {
            line-height: 1.5;
            font-size: 18px;
			color: #FFFFFF;
        }

        .kic-footer__address p {
            margin: 6px 0;
        }

        /* Instagram Section */
        .kic-footer__instagram {
            flex: 2;
            min-width: 0;
            width: 100%;
        }

        .kic-footer__insta-header {
            display: flex;
            align-items: flex-start;
            gap: 60px;
            margin-bottom: 20px;
        }

        .kic-footer__instagram h2 {
            font-size: 2rem;
            font-weight: 500;
            color: #f5e8d3;
            margin: 0;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .kic-footer__insta-img {
            flex: 1 1 0;
            min-width: 0;       /* allows the image to shrink below its intrinsic width */
            width: auto;
            height: auto;       /* keeps aspect ratio */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
            display: block;
        }

        /* Copyright */
        .kic-footer__copyright {
            text-align: center;
            padding: 22px 20px;
            font-size: 0.96rem;
            color: #ffffff;
        }

        /* ====================== RESPONSIVE ====================== */
        @media (max-width: 1200px) {
            .kic-footer__container {
                gap: 50px;
                padding-left: 35px;
                padding-right: 35px;
            }
        }

        /* Single column, left-aligned, below 1000px */
        @media (max-width: 1000px) {
            .kic-footer__container {
                flex-direction: column;
                text-align: left;
                padding: 45px 25px 40px;
                gap: 40px;
            }

            .kic-footer__insta-header {
                flex-direction: column;
                gap: 18px;
                align-items: flex-start;
            }

            .kic-footer__logo {
                margin: 0 0 20px;
            }

            .kic-footer__instagram h2 {
                white-space: normal;
                text-align: left;
            }

            .kic-footer__insta-img {
                width: 100%;
                flex: none;
            }
        }

        @media (max-width: 480px) {
            .kic-footer__container {
                padding: 40px 20px 35px;
            }
            .kic-footer__insta-header {
                gap: 15px;
            }
        }

/* ===== WordPress/Storefront integration & overrides (keep last) ===== */

/* full-bleed breakout of Storefront's .col-full container */
.site-footer .kic-footer,
.kic-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

/* strip Storefront's footer wrapper styling */
.site-footer {
    padding: 0;
    background: transparent;
}

/* beat Storefront's .site-footer h2 color rule */
.site-footer .kic-footer__instagram h2 {
    color: #f5e8d3;
}

.site-footer {
    
    padding: 0 !important;
}










/* ============================================================
   FOOTER NAVIGATION LIST (Updated)
   ============================================================ */

.kic-footer__nav-list {
    list-style: none !important;
    padding: 20px 40px 40px !important; /* Top space to separate from info section */
    margin: 0 auto !important;
    max-width: 1320px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px; /* Space between items on PC */
}

/* Link Styling - PC */
.kic-footer__nav-list li a {
    color: #ffffff !important; /* Pure white as requested */
    font-size: 18px !important; /* 18px for PC */
    font-weight: bold !important;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.kic-footer__nav-list li a:hover {
    opacity: 0.7;
}

/* ============================================================
   MOBILE (SP) RESPONSIVENESS - Below 1000px and 550px
   ============================================================ */

@media (max-width: 1000px) {
.kic-footer__nav-list {
  
    gap: 40px;
}
	.kic-footer__nav-list li a {
  
    font-size: 16px !important;
   
}


}

@media (max-width: 550px) {
    .kic-footer__nav-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); /* Force 2-column layout */
        gap: 25px 10px; /* Vertical gap 25px, Horizontal 10px */
       padding-top:0 !important;
        justify-content: start;
    }

    /* Link Styling - SP */
    .kic-footer__nav-list li a {
        font-size: 14px !important; /* 14px for Mobile */
        font-weight: bold !important;
    }

    /* Optional: Make the last item (Privacy Policy) span across both columns 
       if it looks too long in one column */
    .kic-footer__nav-list li:last-child {
        grid-column: span 2;
    }
    
    .kic-footer__copyright {
        padding-top: 10px;
        font-size: 13px !important;
    }
}