/* ========================================
   NORTHWIND PICTURES - HOMEPAGE HERO
======================================== */

.northwind-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 60px;
    border-radius: 12px;

    background:
    linear-gradient(
        90deg,
        rgba(5, 15, 35, 0.97) 0%,
        rgba(5, 15, 35, 0.88) 38%,
        rgba(5, 15, 35, 0.55) 60%,
        rgba(5, 15, 35, 0.18) 100%
    ),
url('/images/northwind/hero.jpg');

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.northwind-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
}

.northwind-hero .hero-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: #f4b942;
}

.northwind-hero h1 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 24px;
}

.northwind-hero .hero-text {
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 14px 27px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.25s ease;
}

.hero-btn-primary {
    background: #f4b942;
    color: #071a35;
}

.hero-btn-primary:hover {
    background: #ffffff;
    color: #071a35;
}

.hero-btn-secondary {
    border: 2px solid rgba(255,255,255,0.8);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: #071a35;
}

@media (max-width: 768px) {
    .northwind-hero {
        min-height: 480px;
        padding: 55px 25px;
    }

    .northwind-hero h1 {
        font-size: 42px;
    }

    .northwind-hero .hero-text {
        font-size: 16px;
    }

}

/* =========================================
   NORTHWIND PICTURES - ONE ROW HEADER
========================================= */

.container-header {
    background: linear-gradient(90deg, #07172f 0%, #183b68 100%);
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 40px;
    padding: 0 30px;
}

/* Brand wrapper */
.container-header > .grid-child:first-child {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Brand */
.container-header .navbar-brand {
    margin: 0 !important;
    padding: 18px 0 !important;
}

.container-header .navbar-brand a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Menu wrapper */
.container-header .container-nav {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
}

/* Menu */
.container-header .mod-menu {
    display: flex !important;
    align-items: center;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}

.container-header .mod-menu > li {
    display: block;
}

.container-header .mod-menu > li > a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 5px;
}

.container-header .mod-menu > li > a:hover {
    color: #ffb82e !important;
    background: rgba(255,255,255,0.08);
}

.container-header .mod-menu > li.active > a,
.container-header .mod-menu > li.current > a {
    color: #ffb82e !important;
}

.container-header .mod-menu > li::after,
.container-header .mod-menu > li > a::after {
    display: none !important;
}

/* Mobile */
@media (max-width: 850px) {
    .container-header {
        display: block !important;
        padding: 0 20px;
    }

    .container-header .container-nav {
        justify-content: flex-start;
        padding-bottom: 12px !important;
    }

    .container-header .mod-menu {
        flex-wrap: wrap;
    }

    .container-header .navbar-brand a {
        font-size: 22px;
    }
}

/* ========================================
   NORTHWIND PICTURES - SERVICES SECTION
======================================== */

.northwind-services {
    padding: 75px 25px 85px;
    margin-top: 25px;
    background: #f7f9fc;
    border-radius: 12px;
}

/* Section heading */
.services-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.services-small {
    display: inline-block;
    color: #f4b942;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.services-heading h2 {
    color: #071a35;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 14px;
}

.services-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
}


/* Four-column cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    padding: 34px 27px 30px;
    min-height: 310px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Number in top-right */
.service-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #dce3ec;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

/* Icon */
.service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071a35;
    color: #f4b942;
    border-radius: 9px;
    font-size: 23px;
    margin-bottom: 27px;
}

.service-card h3 {
    color: #071a35;
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 15px;
}

.service-card p {
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 25px;
}

.service-link {
    color: #173b68 !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-link:hover {
    color: #f4a900 !important;
}


/* Hover effect */
.service-card:hover {
    transform: translateY(-7px);
    border-color: #f4b942;
    box-shadow: 0 18px 40px rgba(7, 26, 53, 0.12);
}

.service-card:hover .service-icon {
    background: #f4b942;
    color: #071a35;
}


/* Tablet */
@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */
@media (max-width: 600px) {

    .northwind-services {
        padding: 55px 18px 60px;
    }

    .services-heading {
        margin-bottom: 32px;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .services-heading p {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

}

/* =========================================
   NORTHWIND PICTURES - FEATURED PRODUCTS
========================================= */

.northwind-products {
    background: #f5f7fa;
    padding: 55px 35px;
    border-radius: 12px;
    margin-top: 20px;
}

/* Section title */
.northwind-products > h3,
.northwind-products .card-header {
    text-align: center;
    background: transparent !important;
    border: 0 !important;
    color: #07172f;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}

/* HikaShop product grid */
.northwind-products .hikashop_products {
    width: 100%;
}

/* Individual product card */
.northwind-products .hikashop_product {
    background: #ffffff;
    border: 1px solid #e1e6ed !important;
    border-radius: 10px !important;
    padding: 18px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.northwind-products .hikashop_product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(7, 23, 47, 0.12);
}

/* Product image */
.northwind-products .hikashop_product_image {
    margin-bottom: 18px;
}

.northwind-products .hikashop_product_image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Product name */
.northwind-products .hikashop_product_name,
.northwind-products .hikashop_product_name a {
    color: #07172f !important;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.northwind-products .hikashop_product_name a:hover {
    color: #f4aF28 !important;
}

/* Price */
.northwind-products .hikashop_product_price_full {
    margin: 10px 0 16px;
}

.northwind-products .hikashop_product_price {
    color: #07172f !important;
    font-size: 17px;
    font-weight: 800;
}

/* Add to cart button */
.northwind-products .hikashop_cart_input_button,
.northwind-products .hikabtn {
    background: #f4b942 !important;
    color: #07172f !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 11px 20px !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.northwind-products .hikashop_cart_input_button:hover,
.northwind-products .hikabtn:hover {
    background: #07172f !important;
    color: #ffffff !important;
}

/* Mobile */
@media (max-width: 768px) {
    .northwind-products {
        padding: 35px 15px;
    }

    .northwind-products > h3,
    .northwind-products .card-header {
        font-size: 25px;
    }
}

/* =========================================
   FEATURED PRODUCTS - SAFE CENTERING
========================================= */

/* Keep HikaShop's own grid system */
.northwind-products .hk-row-fluid {
    display: grid !important;
}

/* Center the product listing when there are only a few products */
.northwind-products .hikashop_products_listing {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Product card */
.northwind-products .hikashop_product {
    min-width: 0;
}

/* Prevent product names from breaking letter-by-letter */
.northwind-products .hikashop_product_name,
.northwind-products .hikashop_product_name a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* Keep images responsive */
.northwind-products .hikashop_product_image img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   FEATURED PRODUCTS - IMAGE FIT FIX
========================================= */

.northwind-products .hikashop_product {
    overflow: hidden !important;
}

/* Give every product image area a fixed height */
.northwind-products .hikashop_product_image {
    width: 100%;
    height: 300px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}

/* Keep the whole shirt inside the card */
.northwind-products .hikashop_product_image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block;
}

/* Keep product details nicely inside */
.northwind-products .hikashop_product_name,
.northwind-products .hikashop_product_price_full,
.northwind-products .hikashop_product_stock {
    padding-left: 15px;
    padding-right: 15px;
}

/* =========================================
   FEATURED PRODUCTS - POLISH
========================================= */

.northwind-products {
    padding-top: 35px !important;
    padding-bottom: 45px !important;
}

/* Reduce space below heading */
.northwind-products .card-header {
    margin-bottom: 20px !important;
}

/* Make cards a little tighter */
.northwind-products .hikashop_product {
    padding: 16px !important;
}

/* Keep product names consistent */
.northwind-products .hikashop_product_name {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Slightly improve button spacing */
.northwind-products .hikashop_cart_input_button,
.northwind-products .hikabtn {
    margin-top: 10px !important;
}

/* =========================================
   NORTHWIND PICTURES - ABOUT SECTION
========================================= */

.northwind-about {
    margin-top: 25px;
    padding: 65px 50px;
    background: #07172f;
    border-radius: 12px;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    min-height: 420px;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.about-content {
    color: #ffffff;
}

.about-small {
    display: inline-block;
    color: #f4b942;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.about-content h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 22px;
}

.about-content p {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 28px 0 32px;
}

.about-points span {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.about-points span::first-letter {
    color: #f4b942;
}

.about-btn {
    display: inline-block;
    background: #f4b942;
    color: #07172f !important;
    text-decoration: none !important;
    padding: 13px 24px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.25s ease;
}

.about-btn:hover {
    background: #ffffff;
    color: #07172f !important;
}

@media (max-width: 850px) {
    .northwind-about {
        padding: 45px 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-image,
    .about-image img {
        min-height: 300px;
    }
}

@media (max-width: 500px) {
    .about-points {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   NORTHWIND PICTURES - CTA SECTION
========================================= */

.northwind-cta {
    margin-top: 25px;
    padding: 70px 40px;
    border-radius: 12px;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(244,185,66,0.97),
            rgba(255,202,83,0.94)
        );

    overflow: hidden;
}

.cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.cta-small {
    display: block;
    color: #07172f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.northwind-cta h2 {
    color: #07172f;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 18px;
}

.northwind-cta p {
    color: #26364b;
    font-size: 16px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: 0.25s ease;
}

.cta-primary {
    background: #07172f;
    color: #ffffff !important;
    border: 2px solid #07172f;
}

.cta-primary:hover {
    background: #ffffff;
    color: #07172f !important;
    border-color: #ffffff;
}

.cta-secondary {
    background: transparent;
    color: #07172f !important;
    border: 2px solid #07172f;
}

.cta-secondary:hover {
    background: #07172f;
    color: #ffffff !important;
}

@media (max-width: 768px) {

    .northwind-cta {
        padding: 50px 25px;
    }

    .northwind-cta h2 {
        font-size: 34px;
    }

    .northwind-cta p {
        font-size: 15px;
    }
}

/* =========================================
   NORTHWIND PICTURES - FOOTER
========================================= */

.northwind-footer {
    background: #07172f;
    color: rgba(255,255,255,0.78);
    padding: 60px 50px 0;
}

.northwind-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 45px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: 1px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 10px;
    color: rgba(255,255,255,0.72);
}

.footer-brand p {
    max-width: 300px;
}

.footer-tagline {
    display: block;
    color: #f4b942;
    font-size: 13px;
    font-weight: 700;
    margin-top: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 11px;
    font-size: 14px;
}

.footer-column a {
    color: rgba(255,255,255,0.78) !important;
    text-decoration: none !important;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: #f4b942 !important;
}

.footer-facebook {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 17px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-facebook:hover {
    background: #f4b942;
    border-color: #f4b942;
    color: #07172f !important;
}

/* Bottom copyright bar */

.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.12);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

/* Mobile */

@media (max-width: 900px) {

    .northwind-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .northwind-footer {
        padding: 45px 25px 0;
    }

    .northwind-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* =========================================
   NORTHWIND PICTURES - SHOP / PRODUCT LISTING
========================================= */

/* Main HikaShop shop area */
.hikashop_products_listing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 25px 70px;
}

/* Product cards */
.hikashop_products_listing .hikashop_product {
    background: #ffffff;
    border: 1px solid #dfe5ec !important;
    border-radius: 10px;
    padding: 22px 18px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Card hover */
.hikashop_products_listing .hikashop_product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(7, 23, 47, 0.12);
}

/* Product image area */
.hikashop_products_listing .hikashop_product_image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px !important;
    margin-bottom: 18px;
}

/* Product images */
.hikashop_products_listing .hikashop_product_image img {
    width: 100% !important;
    max-width: 280px !important;
    height: 280px !important;
    object-fit: contain !important;
}

/* Product name */
.hikashop_products_listing .hikashop_product_name {
    display: block;
    min-height: 52px;
    margin: 10px 0 8px;
    text-align: center;
}

.hikashop_products_listing .hikashop_product_name a {
    color: #071a35 !important;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none !important;
}

/* Product name hover */
.hikashop_products_listing .hikashop_product_name a:hover {
    color: #f4b942 !important;
}

/* Price */
.hikashop_products_listing .hikashop_product_price_full {
    text-align: center;
    margin: 10px 0 15px;
}

.hikashop_products_listing .hikashop_product_price {
    color: #071a35 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

/* Choose Options / Add to Cart button */
.hikashop_products_listing .hikabtn,
.hikashop_products_listing .btn {
    background: #f4b942 !important;
    border: 2px solid #f4b942 !important;
    color: #071a35 !important;
    border-radius: 5px !important;
    padding: 11px 20px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none !important;
}

/* Button hover */
.hikashop_products_listing .hikabtn:hover,
.hikashop_products_listing .btn:hover {
    background: #071a35 !important;
    border-color: #071a35 !important;
    color: #ffffff !important;
}

/* Hide HikaShop credit link at bottom */
.hikashop_footer {
    display: none !important;
}

/* Tablet */
@media (max-width: 900px) {
    .hikashop_products_listing .hikashop_product_image {
        height: 240px !important;
    }

    .hikashop_products_listing .hikashop_product_image img {
        height: 220px !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hikashop_products_listing {
        padding: 30px 15px 50px;
    }

    .hikashop_products_listing .hikashop_product_image {
        height: 260px !important;
    }

    .hikashop_products_listing .hikashop_product_image img {
        max-width: 240px !important;
        height: 240px !important;
    }
}

/* =========================================
   NORTHWIND - SHOP INTRO
========================================= */

.northwind-shop-intro {
    max-width: 1200px;
    margin: 35px auto 0;
    padding: 45px 30px 10px;
    text-align: center;
}

.northwind-shop-intro span {
    display: block;
    color: #f4b942;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.northwind-shop-intro h1 {
    color: #07172f;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 12px;
}

.northwind-shop-intro p {
    max-width: 650px;
    margin: 0 auto;
    color: #5b6777;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .northwind-shop-intro {
        padding: 30px 20px 5px;
    }

    .northwind-shop-intro h1 {
        font-size: 32px;
    }
}