/* ===== GLOBAL ===== */

*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:'Poppins','Segoe UI',sans-serif;
line-height:1.6;
color:#333;
background:linear-gradient(to bottom,#ffffff,#f4f7fb,#eef2f8);
overflow-x:hidden;
}

.container{
width:92%;
max-width:1200px;
margin:auto;
padding:1rem 0;
}

h1,h2,h3,h4{
color:#0a2540;
font-weight:600;
}

/* ===== HEADER ===== */

.header{
background:linear-gradient(135deg,#1f4e79,#2f6fa5);
padding:.7rem 0;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 4px 14px rgba(0,0,0,0.15);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.logo img{
height:70px;
width:auto;
transition:transform .3s;
}

.logo img:hover{
transform:scale(1.05);
}

.navbar ul{
list-style:none;
display:flex;
gap:1.5rem;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:500;
position:relative;
transition:.3s;
}

.navbar a::after{
content:"";
position:absolute;
width:0;
height:2px;
left:0;
bottom:-4px;
background:#ffd60a;
transition:.3s;
}

.navbar a:hover{
color:#ffd60a;
}

.navbar a:hover::after{
width:100%;
}

/* ===== HERO ===== */

.hero{
text-align:center;
padding:80px 20px;
background:linear-gradient(135deg,#f7f9fc,#eef3ff);
border-radius:0 0 20px 20px;
}

.hero h2{
font-size:2.8rem;
font-weight:700;
margin-bottom:10px;
}

.hero p{
font-size:1.2rem;
color:#555;
margin-bottom:25px;
}

/* ===== BUTTON ===== */

.btn-primary{
background:linear-gradient(135deg,#ff7a18,#ffb347);
color:white;
padding:12px 30px;
border:none;
border-radius:40px;
font-weight:600;
text-decoration:none;
display:inline-block;
transition:.3s;
box-shadow:0 8px 20px rgba(255,120,50,0.35);
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(255,120,50,0.45);
}

/* ===== PRODUCT GRID ===== */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:2rem;
margin-top:2rem;
}

/* ===== PRODUCT CARD ===== */

.card,
.product-card{
background:#fff;
border-radius:18px;
padding:18px;
box-shadow:0 10px 28px rgba(0,0,0,0.08);
text-align:center;
transition:.35s;
border:1px solid rgba(0,0,0,0.04);
}

.card img,
.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
transition:transform .4s ease;
}

.card:hover,
.product-card:hover{
transform:translateY(-10px);
box-shadow:0 22px 45px rgba(0,0,0,0.15);
}

.product-card:hover img{
transform:scale(1.05);
}

.card h4,
.product-card h4{
margin:12px 0 5px;
font-size:1.1rem;
}

.price{
display:block;
font-weight:bold;
margin:8px 0;
color:#0a66ff;
}

/* ===== FILTER BAR ===== */

.filter-bar{
display:flex;
flex-wrap:wrap;
gap:12px;
margin:1.5rem 0;
justify-content:center;
}

.filter-bar button{
background:#fff;
border:1px solid #ddd;
padding:8px 18px;
border-radius:25px;
cursor:pointer;
transition:.3s;
}

.filter-bar button:hover,
.filter-bar button.active{
background:#0a66ff;
color:#fff;
border-color:#0a66ff;
}

/* ===== PRODUCT DETAIL ===== */

.product-detail-section{
padding:80px 20px;
}

.product-detail-card{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* ===== GALLERY ===== */

.product-gallery{
display:flex;
flex-direction:column;
align-items:center;
}

.product-gallery .main-image{
max-width:400px;
width:100%;
border-radius:14px;
object-fit:contain;
box-shadow:0 4px 14px rgba(0,0,0,0.12);
}

.thumbnail-list{
margin-top:18px;
display:flex;
gap:12px;
}

.thumbnail-list img{
width:70px;
height:70px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
border:2px solid transparent;
transition:.3s;
}

.thumbnail-list img:hover,
.thumbnail-list img.active{
border:2px solid #0a66ff;
transform:scale(1.1);
}

/* ==== Product Info ==== */

.product-info h2{
font-size:2rem;
margin-bottom:15px;
color:#0a2540;
}

.product-info p{
margin:10px 0;
line-height:1.6;
color:#555;
}

.product-info .price{
font-size:1.5rem;
font-weight:bold;
color:#ff6b35;
margin:20px 0;
}

/* ===== SIZE BADGE (UNCHANGED) ===== */

.size-badge{
display:inline-block;
background:#eef2ff;
color:#1e3a8a;
padding:6px 12px;
margin:4px;
border-radius:20px;
font-size:0.9rem;
border:1px solid #c7d2fe;
transition:.25s;
}

.size-badge:hover{
background:#dbeafe;
}

/* ===== COLOR BADGE (UNCHANGED) ===== */

.color-badge{
display:inline-flex;
align-items:center;
margin:4px;
padding:6px 12px;
border:1px solid #e5e7eb;
border-radius:20px;
font-size:0.9rem;
background:#fafafa;
}

.color-circle{
display:inline-block;
width:20px;
height:20px;
border-radius:50%;
margin-right:8px;
border:1px solid #bbb;
}

/* ===== QUOTE FORM ===== */

#quoteForm{
margin-top:25px;
background:#fff;
padding:20px;
border-radius:12px;
border:1px solid #eee;
box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

#quoteForm input,
#quoteForm textarea{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ccc;
margin-bottom:10px;
}

#quoteForm button{
width:100%;
background:#0a66ff;
color:white;
border:none;
padding:12px;
border-radius:8px;
font-weight:bold;
cursor:pointer;
}

/* ===== FAQ FIX ===== */

.faq-container{
max-width:800px;
margin:50px auto;
padding:0 20px;
}

.faq-item{
background:#fff;
border-radius:10px;
margin-bottom:15px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.faq-question{
width:100%;
padding:18px 20px;
font-size:16px;
font-weight:600;
background:none;
border:none;
cursor:pointer;
display:flex;
justify-content:space-between;
}

.faq-answer{
display:none;
padding:15px 20px;
font-size:14px;
color:#555;
line-height:1.7;
}

.faq-item.active .faq-answer{
display:block;
}

/* ===== FOOTER ===== */

.footer{
background:linear-gradient(135deg,#1f4e79,#0a2540);
color:white;
text-align:center;
padding:2rem 1rem;
margin-top:3rem;
}

.footer a{
color:#ffd60a;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* ===== ABOUT US ===== */
.about {
  padding: 70px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fb);
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff4b2b;
}

.about p {
  margin-bottom: 15px;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 25px auto;
  max-width: 900px;
}

.about-values li {
  background: #fff;
  border-left: 4px solid #ff4b2b;
  padding: 12px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 60px 0;
  text-align: center;
}

.why-choose h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0a2540;
  font-weight: 700;
}

.why-choose ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

.why-choose li {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.why-choose li:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
/* ===== RESPONSIVE ===== */

@media(max-width:900px){

.product-detail-card{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.logo img{
height:60px;
}

.hero h2{
font-size:2rem;
}

.product-card img{
height:180px;
}

}

html{
scroll-behavior:smooth;
}
