*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f3f4f6;
color:#111;
line-height:1.6;
}

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

.site-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 25px;
background:linear-gradient(135deg,#1f6f5c,#0f766e);
box-shadow:0 3px 12px rgba(0,0,0,0.15);
}

/* ===== LOGO ===== */

.logo{
width:38px;
height:38px;
border-radius:50%;
object-fit:cover;
border:2px solid #F59E0B;
box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

/* ===== HOME BUTTON ===== */

.home-btn{
background:rgba(255,255,255,0.08);
border:none;
cursor:pointer;
padding:8px;
border-radius:8px;
transition:.3s;
}

.home-btn:hover{
background:rgba(255,255,255,0.18);
}

.home-icon{
width:26px;
height:26px;
stroke:#fff;
stroke-width:1.8;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
transition:.3s;
}

/* ===== PRODUCT LAYOUT ===== */

.product-container{
max-width:950px;
margin:35px auto;
padding:25px;
background:#fff;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* ===== PRODUCT IMAGES ===== */

.product-images{
display:flex;
gap:12px;
overflow-x:auto;
margin-bottom:25px;
}

.product-images img{
width:160px;
height:160px;
object-fit:contain;
border-radius:10px;
background:#fafafa;
padding:10px;
border:1px solid #eee;
transition:.3s;
}

.product-images img:hover{
transform:scale(1.05);
}

/* ===== PRODUCT DETAILS ===== */

.product-details h1{
font-size:24px;
margin-bottom:12px;
font-weight:600;
}

.short-desc{
color:#0f766e;
font-weight:600;
margin-bottom:18px;
}

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

.features{
margin-bottom:22px;
padding-left:18px;
}

.features li{
margin-bottom:10px;
}

/* ===== PRICE ===== */

.price-box{
margin-top:15px;
line-height:1.7;
}

.discount{
color:#cc0c39;
font-weight:700;
font-size:18px;
margin-right:8px;
}

.current-price{
font-size:30px;
font-weight:700;
color:#111;
}

.list-label{
color:#565959;
font-size:14px;
}

.list-price{
color:#565959;
font-size:14px;
text-decoration:line-through;
}

/* ===== BUY BUTTON ===== */

.buy-button{
display:block;
text-align:center;
padding:15px;
margin-top:18px;
background:linear-gradient(135deg,#0f766e,#0ea5a0);
color:#fff;
text-decoration:none;
border-radius:10px;
font-size:17px;
font-weight:bold;
letter-spacing:.3px;
transition:.3s;
}

.buy-button:hover{
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* ===== ICON BUTTONS ===== */

.icon-btn{
display:inline-flex;
align-items:center;
justify-content:center;
background:black;
border:2px solid white;
border-radius:8px;
padding:8px;
margin:6px;
text-decoration:none;
cursor:pointer;
transition:.3s;
}

.icon-btn:hover{
background:#25D366;
border-color:#25D366;
}

.icon-svg{
width:24px;
height:24px;
}

/* ===== CUSTOM ORDERS ===== */

.custom-orders{
margin-top:80px;
padding:60px 20px;
background:#f7fafc;
border-radius:16px;
text-align:center;
}

.custom-orders h2{
font-size:28px;
margin-bottom:10px;
color:#0A3D91;
}

.custom-orders p{
color:#444;
margin-bottom:40px;
}

.custom-grid{
display:grid;
gap:22px;
}

/* Mobile */

@media(max-width:767px){

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

}

/* Desktop */

@media(min-width:768px){

.product-container{
display:flex;
gap:30px;
}

.product-images{
flex-direction:column;
overflow:visible;
}

.product-details{
flex:1;
}

.custom-grid{
grid-template-columns:repeat(4,1fr);
}

}

.custom-card img{
width:100%;
border-radius:12px;
transition:.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.custom-card img:hover{
transform:scale(1.05);
}

.custom-card h3{
margin-top:10px;
font-size:14px;
color:#111;
}

/* ===== LEGAL PAGES ===== */

.legal-container{
max-width:900px;
margin:60px auto;
padding:35px;
background:#fff;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
line-height:1.8;
}

.legal-container h1{
font-size:32px;
margin-bottom:20px;
}

.legal-container h2{
margin-top:25px;
font-size:20px;
color:#ff3c00;
}

.legal-container p{
font-size:16px;
color:#333;
}

.legal-container a{
color:#ff3c00;
font-weight:bold;
text-decoration:none;
}

.legal-container a:hover{
text-decoration:underline;
}

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

.site-footer{
text-align:center;
padding:35px 15px;
background:#f5f5f5;
font-size:14px;
color:#666;
border-top:1px solid #e5e5e5;
}

.footer-line a{
color:#666;
text-decoration:none;
margin:0 4px;
}

.footer-line a:hover{
text-decoration:underline;
}

.footer-line span{
margin:0 4px;
color:#999;
}

.affiliate-text{
margin-top:10px;
font-size:13px;
color:#777;
max-width:650px;
margin-left:auto;
margin-right:auto;
}

/* ===== PREMIUM EFFECTS ===== */

/* Smooth page feel */

body{
scroll-behavior:smooth;
}

/* Product card feel */

.product-container{
transition:0.3s;
}

.product-container:hover{
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* Image hover zoom */

.product-images img{
cursor:zoom-in;
transition:transform .35s ease, box-shadow .35s ease;
}

.product-images img:hover{
transform:scale(1.12);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Buy button premium */

.buy-button{
position:relative;
overflow:hidden;
}

.buy-button::after{
content:"";
position:absolute;
left:-100%;
top:0;
height:100%;
width:100%;
background:rgba(255,255,255,0.2);
transition:0.5s;
}

.buy-button:hover::after{
left:100%;
}

/* Sticky Buy Button Mobile */

@media(max-width:768px){

.buy-button{
position:sticky;
bottom:10px;
z-index:100;
box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

}

/* Product image scrollbar clean */

.product-images::-webkit-scrollbar{
height:6px;
}

.product-images::-webkit-scrollbar-track{
background:#eee;
}

.product-images::-webkit-scrollbar-thumb{
background:#0f766e;
border-radius:10px;
}

/* Custom cards premium */

.custom-card{
transition:0.3s;
}

.custom-card:hover{
transform:translateY(-6px);
}

/* Footer hover feel */

.site-footer{
transition:0.3s;
}

.site-footer:hover{
background:#efefef;
}