*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Georgia,serif;
scroll-behavior:smooth;
}

body{
background:#f7f8fc;
color:#222;
overflow-x:hidden;
}

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

.page-header{
position:fixed;
top:0;
left:0;
width:100%;
padding:12px 6%;
gap:16px;
background:#09105A;
display:flex;
align-items:center;
justify-content:flex-start;
z-index:1000;
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.back-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 24px;
background:#E3B34D;
color:#09105A;
text-decoration:none;
font-weight:700;
border-radius:40px;
transition:.35s;
box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.back-btn:hover{
background:#fff;
transform:translateY(-3px);
}

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

.hero{
padding:120px 8% 55px;
background:#09105A;
text-align:center;
color:#fff;
}

.breadcrumb{
display:flex;
align-items:center;
gap:10px;
font-size:15px;
font-weight:600;
color:#ffffff;
}

.breadcrumb a{
color:#E3B34D;
text-decoration:none;
}

.breadcrumb span{
color:#ffffff;
}

.breadcrumb a{
color:#E3B34D;
text-decoration:none;
}

.breadcrumb span{
margin:0 ;
}

.hero h1{
font-size:34px;
font-weight:700;
margin-bottom:15px;
line-height:1.3;
}

.hero p{
max-width:760px;
margin:auto;
font-size:16px;
line-height:1.7;
color:rgba(255,255,255,.88);
}

.product-count{
display:inline-block;
margin-top:22px;
padding:10px 22px;
font-size:15px;
}

/*================ GRID ================*/

.catalog{
padding:55px 8%;
}

.catalog-grid{

display:grid;

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

gap:35px;

}

/*================ CARD ================*/

.product-card{

background:#fff;

border-radius:24px;

overflow:hidden;

text-decoration:none;

color:#111;

transition:.35s;

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

}

.product-card:hover{

transform:translateY(-12px);

box-shadow:
0 20px 45px rgba(0,0,0,.16);

}

.product-image{
height:240px;

overflow:hidden;

background:#fff;

display:flex;
justify-content:center;
align-items:center;

}

.product-image img{

width:100%;
height:100%;

object-fit:contain;

transition:.45s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-content{
padding:22px;
}

.product-content h2{
font-size:22px;
font-weight:700;
color:#09105A;
margin-bottom:10px;
line-height:1.3;
}

.product-content p{
font-size:15px;
line-height:1.6;
color:#666;
margin-bottom:22px;
min-height:48px;
}

.product-content span{
display:inline-flex;
align-items:center;
gap:8px;
font-size:15px;
font-weight:600;
color:#09105A;
transition:.35s;
}

.product-card:hover span{

color:#E3B34D;

gap:18px;

}

.product-content span i{

transition:.35s;

}

.product-card:hover span i{

transform:translateX(6px);

}

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

.cta{
padding:65px 8%;
background:#09105A;
text-align:center;
color:#fff;
margin-top:40px;
}

.cta h2{
font-size:32px;
font-weight:700;
margin-bottom:16px;
}

.cta p{
max-width:650px;
margin:0 auto 28px;
font-size:17px;
line-height:1.7;
color:rgba(255,255,255,.9);
}

.cta a{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 38px;
background:#E3B34D;
color:#09105A;
text-decoration:none;
font-weight:700;
font-size:18px;
border-radius:50px;
transition:.35s;
box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.cta a:hover{
background:#fff;
transform:translateY(-4px);
box-shadow:0 18px 35px rgba(0,0,0,.25);
}

/*================ CARD BORDER EFFECT =================*/

.product-card::before{
content:"";
position:absolute;
inset:0;
border-radius:24px;
padding:1px;
background:linear-gradient(135deg,transparent,#E3B34D,transparent);

-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
mask-composite:exclude;
opacity:0;
transition:.35s;
pointer-events:none;
}

.product-card{
position:relative;
}

.product-card:hover::before{
opacity:1;
}

/*================ SCROLLBAR =================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#ececec;
}

::-webkit-scrollbar-thumb{
background:#09105A;
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#E3B34D;
}

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

@media(max-width:1200px){

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

.hero p{
font-size:18px;
}

.product-image{
height:240px;
}

}

@media(max-width:992px){

.hero{
padding:110px 8% 45px;
text-align:center;
background:#09105A;
color:white;
}

.hero h1{
font-size:38px;
font-weight:700;
margin-bottom:16px;
line-height:1.25;
}

.hero p{
font-size:17px;
max-width:760px;
margin:auto;
line-height:1.7;
color:rgba(255,255,255,.88);
}

.catalog{
padding:60px 7%;
}

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

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

}

@media(max-width:768px){

.page-header{
    padding:14px 18px;
    gap:12px;
}

.back-btn{
    padding:7px 14px;
    font-size:.8rem;
    border-radius:22px;
    gap:6px;
}

.back-btn i{
    font-size:.8rem;
}

.breadcrumb{
    gap:6px;
    font-size:.8rem;
}

.breadcrumb a,
.breadcrumb span{
    font-size:.8rem;
}

.breadcrumb span{
    margin:0;
}

.hero{
    padding:80px 18px 28px;
}
.hero h1{
    font-size:1.5rem;
    line-height:1.15;
    margin-bottom:12px;
}

.hero p{
    font-size:.8rem;
    line-height:1.6;
    max-width:100%;
}

.product-count{
    margin-top:14px;
    padding:6px 14px;
    font-size:.75rem;
}

.catalog{
padding:50px 8%;
}

.catalog-grid{
grid-template-columns:1fr;
gap:28px;
}

.product-image{
    height:190px;
}

.product-content{
padding:18px;
}

.product-content h2{
    font-size:1.4rem;
    line-height:1.3;
}

.product-content p{
    font-size:.9rem;
    line-height:1.5;
    min-height:auto;
}

.cta{
    padding:50px 20px;
    margin-top:25px;
}

.cta h2{
    font-size:2rem;
    line-height:1.2;
    margin-bottom:12px;
}

.cta p{
    font-size:.95rem;
    line-height:1.6;
    max-width:100%;
    margin:0 auto 22px;
}

.cta a{
    padding:12px 28px;
    font-size:1rem;
    border-radius:30px;
}

}

@media(max-width:480px){

.hero h1{
    font-size:1.5rem;
    line-height:1.2;
    margin-bottom:12px;
}

.hero p{
    font-size:.8rem;
    line-height:1.6;
}

.product-image{
height:200px;
}

.product-content h2{
font-size:22px;
}

.product-content p{
font-size:15px;
}

.cta h2{
font-size:26px;
}

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

}