/* ==========================================================
   E & J Trading Pty Ltd
   Production Stylesheet v2.0
   ========================================================== */

/* --------------------------
   CSS Reset
--------------------------- */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{

    font-family:'Lato',Arial,sans-serif;
    font-size:16px;
    line-height:1.65;
    color:#333;
    background:#fff;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

/* --------------------------
   Variables
--------------------------- */

:root{

--primary:#213F99;
--primary-dark:#162b73;

--secondary:#B8918D;

--accent:#d5c3be;

--text:#333;

--light:#f8f8f8;

--white:#ffffff;

--border:#e4e4e4;

--shadow:0 8px 24px rgba(0,0,0,.08);

--radius:12px;

--container:1200px;

--transition:.30s ease;

}

/* --------------------------
   Images
--------------------------- */

img{

display:block;

max-width:100%;

height:auto;

border:0;

}

/* Product images */

.product-card img{

width:100%;

aspect-ratio:4/3;

object-fit:cover;

display:block;

}

/* Logo */

.logo{

display:flex;

align-items:center;

flex-shrink:0;

text-decoration:none;

}

.logo img{

width:auto;

height:58px;

max-width:240px;

object-fit:contain;

display:block;

}

/* Footer logo */

.footer-logo{

height:60px;

width:auto;

margin-bottom:20px;

}

/* --------------------------
   Typography
--------------------------- */

h1,
h2,
h3,
h4{

font-family:'Playfair Display',serif;

font-weight:700;

color:var(--primary);

line-height:1.2;

margin-bottom:.8rem;

}

h1{

font-size:clamp(2.4rem,5vw,4rem);

}

h2{

font-size:clamp(2rem,4vw,2.8rem);

text-align:center;

margin-bottom:2rem;

}

h3{

font-size:1.4rem;

}

p{

margin-bottom:1rem;

}

a{

color:var(--primary);

text-decoration:none;

transition:var(--transition);

}

a:hover{

color:var(--secondary);

}

/* --------------------------
   Layout
--------------------------- */

.container{

width:min(1200px,calc(100% - 40px));

margin-inline:auto;

}

section{

padding:80px 0;

}

/* --------------------------
   Header
--------------------------- */

header{

position:sticky;

top:0;

background:#fff;

box-shadow:0 2px 10px rgba(0,0,0,.08);

z-index:1000;

}

header .container{

display:flex;

align-items:center;

gap:24px;

min-height:90px;

}

nav{
flex:1;
display:flex;
justify-content:flex-end;
margin-left:0;
}

.language-selector,
.button{
flex-shrink:0;
}

/* Navigation */

nav{

margin-left:auto;

}

nav ul{

display:flex;

align-items:center;

gap:24px;

list-style:none;

}

nav a{

font-weight:600;

color:#333;

position:relative;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

nav a:hover::after{

width:100%;

}

nav a.active{

color:var(--primary);

}
/* ==========================================================
   BUTTONS
========================================================== */

.button,
.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:.5rem;

padding:14px 28px;

background:var(--primary);

color:#fff;

border:none;

border-radius:8px;

font-weight:700;

font-size:1rem;

cursor:pointer;

text-decoration:none;

transition:all .3s ease;

white-space:nowrap;

}

.button:hover,
.btn:hover{

background:var(--primary-dark);

color:#fff;

transform:translateY(-2px);

box-shadow:0 8px 20px rgba(33,63,153,.25);

}

.button.secondary{

background:#fff;

border:2px solid var(--primary);

color:var(--primary);

}

.button.secondary:hover{

background:var(--primary);

color:#fff;

}

/* ==========================================================
   LANGUAGE SELECTOR
========================================================== */

.language-selector{

display:flex;

align-items:center;

margin-left:20px;

}

.language-selector select{

appearance:none;
-webkit-appearance:none;
-moz-appearance:none;

background:#fff;

border:1px solid var(--border);

border-radius:8px;

padding:10px 40px 10px 14px;

font-size:.95rem;

font-weight:600;

color:var(--primary);

cursor:pointer;

transition:.3s;

background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23213F99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

background-repeat:no-repeat;

background-position:right 12px center;

}

.language-selector select:hover{

border-color:var(--primary);

}

.language-selector select:focus{

outline:none;

border-color:var(--primary);

box-shadow:0 0 0 3px rgba(33,63,153,.15);

}

/* ==========================================================
   HERO
========================================================== */

.hero{

position:relative;

display:flex;

align-items:center;

justify-content:center;

min-height:620px;

text-align:center;

overflow:hidden;

color:#fff;

background:#213F99;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(rgba(20,35,85,.82),

rgba(20,35,85,.82));

z-index:1;

}

.hero-image{

position:absolute;

inset:0;

width:100%;

height:100%;

object-fit:cover;

z-index:0;

}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

padding:40px;

}

.hero h1{

color:#fff;

margin-bottom:20px;

}

.hero p{

font-size:1.15rem;

max-width:760px;

margin:0 auto 40px;

color:rgba(255,255,255,.92);

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* ==========================================================
   PAGE HERO
========================================================== */

.hero-product{

min-height:380px;

}

.hero-product h1{

font-size:clamp(2.5rem,5vw,4rem);

margin-bottom:16px;

}

.hero-product p{

max-width:720px;

}

/* ==========================================================
   SECTION TITLES
========================================================== */

.section-title{

text-align:center;

margin-bottom:18px;

}

.section-intro{

max-width:760px;

margin:0 auto 50px;

text-align:center;

color:#555;

}

/* ==========================================================
   MOBILE MENU
========================================================== */

.menu-toggle{

display:none;

background:none;

border:none;

cursor:pointer;

padding:8px;

}

.menu-toggle span{

display:block;

width:28px;

height:3px;

margin:6px 0;

background:var(--primary);

transition:.3s;

border-radius:2px;

}

/* ==========================================================
   RESPONSIVE HEADER
========================================================== */

@media (max-width:992px){

header .container{

min-height:80px;

}

.logo img{

height:52px;

max-width:200px;

}

nav ul{

gap:16px;

}

.language-selector{

margin-left:10px;

}

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

header .container{

flex-wrap:wrap;

padding:12px 0;

}

.logo img{

height:46px;

max-width:170px;

}

.menu-toggle{

display:block;

margin-left:auto;

}

nav{

width:100%;

display:none;

margin-top:16px;

}

nav.active{

display:block;

}

nav ul{

flex-direction:column;

align-items:flex-start;

gap:14px;

padding:10px 0;

}

.language-selector{

width:100%;

margin:16px 0;

}

.language-selector select{

width:100%;

}

.hero{

min-height:520px;

padding:60px 0;

}

.hero-content{

padding:20px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.button{

width:240px;

}

}
/* ==========================================================
   PRODUCTS
========================================================== */

.products{

background:#fff;

}

.product-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:32px;

margin-top:50px;

}

.product-card{

background:#fff;

border:1px solid var(--border);

border-radius:var(--radius);

overflow:hidden;

box-shadow:var(--shadow);

transition:all .3s ease;

display:flex;

flex-direction:column;

height:100%;

}

.product-card:hover{

transform:translateY(-8px);

box-shadow:0 16px 35px rgba(0,0,0,.12);

}

.product-card img{

width:100%;

aspect-ratio:4/3;

object-fit:cover;

}

.product-content{

padding:28px;

display:flex;

flex-direction:column;

flex:1;

}

.product-content h3{

margin-bottom:14px;

}

.product-content p{

flex:1;

margin-bottom:22px;

color:#555;

}

.product-content a{

font-weight:700;

}

/* ==========================================================
   FEATURES
========================================================== */

.features{

background:var(--light);

}

.features-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:32px;

margin-top:40px;

}

.feature{

background:#fff;

padding:35px;

border-radius:12px;

box-shadow:var(--shadow);

text-align:center;

transition:.3s;

}

.feature:hover{

transform:translateY(-5px);

}

.feature img{

width:70px;

height:70px;

margin:0 auto 20px;

object-fit:contain;

}

.feature h3{

margin-bottom:16px;

}

/* ==========================================================
   CONTENT SECTIONS
========================================================== */

.two-column{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.two-column img{

border-radius:12px;

box-shadow:var(--shadow);

}

.content{

max-width:650px;

}

.content ul{

padding-left:20px;

margin-top:15px;

}

.content li{

margin-bottom:10px;

}

/* ==========================================================
   WHY CHOOSE US
========================================================== */

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:50px;

}

.why-card{

padding:30px;

background:#fff;

border-radius:12px;

box-shadow:var(--shadow);

text-align:center;

}

/* ==========================================================
   CTA
========================================================== */

.cta{

background:linear-gradient(135deg,var(--primary),var(--primary-dark));

color:#fff;

text-align:center;

}

.cta h2{

color:#fff;

}

.cta p{

max-width:760px;

margin:0 auto 35px;

color:rgba(255,255,255,.92);

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* ==========================================================
   CONTACT CARDS
========================================================== */

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:40px;

}

.contact-card{

background:#fff;

padding:30px;

border-radius:12px;

box-shadow:var(--shadow);

text-align:center;

}

.contact-card h3{

margin-bottom:15px;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

background:#17264d;

color:#d9d9d9;

padding:70px 0 25px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

}

.footer-column h4{

color:#fff;

margin-bottom:20px;

}

.footer-column ul{

list-style:none;

}

.footer-column li{

margin-bottom:12px;

}

.footer-column a{

color:#d9d9d9;

}

.footer-column a:hover{

color:#fff;

}

.footer-logo{

height:60px;

width:auto;

margin-bottom:20px;

}

.copyright{

border-top:1px solid rgba(255,255,255,.1);

margin-top:50px;

padding-top:20px;

text-align:center;

font-size:.9rem;

color:#aaa;

}

/* ==========================================================
   UTILITIES
========================================================== */

.text-center{

text-align:center;

}

.mt-1{margin-top:1rem;}
.mt-2{margin-top:2rem;}
.mt-3{margin-top:3rem;}
.mb-1{margin-bottom:1rem;}
.mb-2{margin-bottom:2rem;}
.mb-3{margin-bottom:3rem;}

.hidden{

display:none;

}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

:focus-visible{

outline:3px solid var(--secondary);

outline-offset:3px;

}

@media (prefers-reduced-motion:reduce){

*{

animation:none!important;

transition:none!important;

scroll-behavior:auto!important;

}

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

.two-column{

grid-template-columns:1fr;

gap:40px;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media (max-width:768px){

section{

padding:60px 0;

}

.product-grid,
.features-grid,
.why-grid,
.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

text-align:center;

}

.footer-logo{

margin:0 auto 20px;

}

}

/* ==========================================================
   BROWSER FIXES
========================================================== */

/* Firefox / Tor */

img{

image-rendering:auto;

}

/* Safari */

input,
button,
select{

-webkit-appearance:none;

border-radius:8px;

}

/* Opera */

.logo img{

max-width:240px;

height:58px;

}

/* Prevent flex overflow */

*{

min-width:0;

}
/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-form{

    background:#fff;

    border-radius:12px;

    box-shadow:var(--shadow);

    padding:40px;

    max-width:900px;

    margin:0 auto;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group.full{

    grid-column:1 / -1;

}

label{

    font-weight:700;

    color:var(--primary);

    margin-bottom:8px;

}

input,
select,
textarea{

    width:100%;

    padding:14px 16px;

    font:inherit;

    border:1px solid var(--border);

    border-radius:8px;

    background:#fff;

    transition:.3s;

}

textarea{

    min-height:180px;

    resize:vertical;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(33,63,153,.15);

}

input::placeholder,
textarea::placeholder{

    color:#999;

}

/* ==========================================================
   TABLES
========================================================== */

.table-responsive{

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

    margin:30px 0;

}

thead{

    background:var(--primary);

    color:#fff;

}

th,
td{

    padding:14px;

    border:1px solid var(--border);

    text-align:left;

}

tbody tr:nth-child(even){

    background:#fafafa;

}

/* ==========================================================
   SPECIFICATION TABLES
========================================================== */

.specs{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

/* ==========================================================
   BREADCRUMBS
========================================================== */

.breadcrumb{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:35px;

    font-size:.95rem;

}

.breadcrumb a{

    color:var(--primary);

}

.breadcrumb span{

    color:#888;

}

/* ==========================================================
   LEGAL PAGE
========================================================== */

.legal{

    max-width:900px;

    margin:auto;

}

.legal h2{

    text-align:left;

    margin-top:50px;

}

.legal ul{

    padding-left:20px;

}

.legal li{

    margin-bottom:10px;

}

/* ==========================================================
   ALERTS
========================================================== */

.alert{

    padding:16px 20px;

    border-radius:8px;

    margin-bottom:20px;

}

.alert-success{

    background:#edf8ef;

    color:#1f6a30;

    border-left:5px solid #1f6a30;

}

.alert-error{

    background:#fff2f2;

    color:#a12727;

    border-left:5px solid #a12727;

}

/* ==========================================================
   SEARCH RESULTS
========================================================== */

.search-results{

    display:grid;

    gap:25px;

}

.search-item{

    background:#fff;

    padding:25px;

    border-radius:10px;

    box-shadow:var(--shadow);

}

/* ==========================================================
   BADGES
========================================================== */

.badge{

    display:inline-block;

    padding:5px 10px;

    border-radius:30px;

    background:var(--primary);

    color:#fff;

    font-size:.8rem;

    font-weight:700;

}

/* ==========================================================
   LOADING
========================================================== */

.loading{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px;

}

.spinner{

    width:42px;

    height:42px;

    border:4px solid #eee;

    border-top:4px solid var(--primary);

    border-radius:50%;

    animation:spin .8s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================================
   FADE ANIMATIONS
========================================================== */

.fade-in{

    opacity:0;

    transform:translateY(30px);

    transition:all .7s ease;

}

.fade-in.visible{

    opacity:1;

    transform:none;

}

/* ==========================================================
   BACK TO TOP
========================================================== */

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    box-shadow:var(--shadow);

    opacity:0;

    pointer-events:none;

    transition:.3s;

}

.back-top.show{

    opacity:1;

    pointer-events:auto;

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

header,
footer,
.button,
.menu-toggle,
.language-selector,
.back-top{

display:none!important;

}

body{

background:#fff;

color:#000;

font-size:12pt;

}

section{

padding:0;

margin:0;

}

a{

text-decoration:none;

color:#000;

}

}

/* ==========================================================
   LARGE DESKTOP
========================================================== */

@media (min-width:1400px){

.container{

max-width:1320px;

}

.hero{

min-height:700px;

}

}

/* ==========================================================
   MOBILE FORMS
========================================================== */

@media (max-width:768px){

.form-grid{

grid-template-columns:1fr;

}

.contact-form{

padding:25px;

}

table{

font-size:.9rem;

}

}

/* ==========================================================
   FINAL FIXES
========================================================== */

html{

overflow-x:hidden;

}

body{

overflow-x:hidden;

}

iframe{

max-width:100%;

border:0;

}

svg{

display:block;

max-width:100%;

}

picture{

display:block;

}

.logo img{

image-rendering:auto;

}

/* End of stylesheet */


.hero{isolation:isolate;}
.logo img{max-height:58px;width:auto;}
.product-content .button{margin-top:auto;}
@media (max-width:1100px){
.footer-grid{grid-template-columns:1fr 1fr;gap:40px;}
}

@media (max-width:768px){.container{width:min(100%,calc(100% - 24px));}.button{width:100%;max-width:320px;min-height:48px}.hero{min-height:420px}.hero-image{object-position:center}.contact-card,.feature,.why-card{padding:24px}}
