/*
Theme Name: Borelink
Theme URI: https://borelink.com
Author: Borelink LLC
Author URI: https://borelink.com
Description: Primary Borelink theme — latest version. Backup copy: activate “Borelink Default” if needed. Marketplace platform for HDD and underground infrastructure.
Version: 1.2.34
License: Proprietary
Text Domain: borelink
*/

:root{
--steel-blue:#2F5D7C;
--steel-blue-hover:#264e6a;
--safety-orange:#F7931E;
--safety-orange-hover:#d98118;
--concrete-gray:#F4F6F8;
--carbon-black:#1A1A1A;
--light-gray:#E5E7EB;
--white:#FFFFFF;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f5f6f7;
margin:0;
}

/* Layout container */

.borelink-container{
max-width:none;
width:100%;
margin:0;
box-sizing:border-box;
padding:10px 5px 20px;
}

/* Header */

.borelink-header{
background:var(--white,#FFFFFF);
border-bottom:1px solid var(--light-gray,#E5E7EB);
}

.borelink-nav{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
max-width:min(1680px, 100%);
margin:0 auto;
padding:15px clamp(12px, 3.5vw, 40px);
box-sizing:border-box;
}

.borelink-logo{
font-size:24px;
font-weight:bold;
color:var(--steel-blue);
}

.borelink-menu a{
margin-left:0;
text-decoration:none;
color:#333;
font-weight:500;
}

.borelink-menu a:hover{
color:var(--steel-blue);
}

/* Footer */

.borelink-footer{
background:#111;
color:#bbb;
text-align:center;
padding:6px 5px;
margin-top:28px;
font-size:12px;
line-height:1.3;
}
.borelink-footer-line{
margin:0;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

/* Marketplace grid */

.borelink-products-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* equipment card */

.borelink-equipment-card{
background:white;
border-radius:10px;
padding:15px;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
transition:0.2s;
text-align:center;
}

.borelink-equipment-card:hover{
transform:translateY(-4px);
}

.equipment-image img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
}

.equipment-title{
font-size:18px;
margin-top:10px;
color:var(--steel-blue);
}

.equipment-price{
font-size:16px;
margin-top:6px;
font-weight:bold;
}

.equipment-button{
margin-top:10px;
background:var(--safety-orange);
color:var(--white,#FFFFFF);
padding:8px 12px;
border-radius:5px;
display:inline-block;
}