/* NAVBAR */
.gt-navbar{
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.gt-nav-container{
  max-width:1200px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.gt-logo img{
  height:45px;
  width:auto;
}

/* MENU */
.gt-nav-menu ul{
  list-style:none;
  display:flex;
  gap:30px;
  margin:0;
  padding:0;
}

.gt-nav-menu ul li a{
  text-decoration:none;
  font-size:16px;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

.gt-nav-menu ul li a:hover{
  color:#0073ff;
}

/* MOBILE TOGGLE */
.gt-mobile-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.gt-mobile-toggle span{
  width:25px;
  height:3px;
  background:#333;
  margin:4px 0;
  display:block;
}

/* MOBILE MENU */
@media (max-width:900px){

.gt-mobile-toggle{
  display:flex;
}

.gt-nav-menu{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid #eee;
  display:none;
}

.gt-nav-menu ul{
  flex-direction:column;
  padding:20px;
  gap:15px;
}

.gt-nav-menu.active{
  display:block;
}

}

.sav-hero-section{
  width:100%;
  background:linear-gradient(135deg,#f5f9ff,#eef3ff);
  padding:80px 20px;
}

.sav-hero-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.sav-hero-content{
  flex:1;
}

.sav-hero-title{
  font-size:42px;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:20px;
  line-height:1.3;
}

.sav-hero-desc{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
  line-height:1.6;
}

.sav-hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.sav-btn-primary{
  background:#0066ff;
  color:#fff;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.sav-btn-primary:hover{
  background:#004ecc;
}

.sav-btn-secondary{
  background:#fff;
  color:#0066ff;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  border:2px solid #0066ff;
  font-weight:600;
}

.sav-hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  font-size:15px;
  color:#333;
}

.sav-hero-image{
  flex:1;
  text-align:center;
}

.sav-hero-image img{
  max-width:100%;
  height:auto;
}

/* Responsive */

@media(max-width:900px){

.sav-hero-container{
  flex-direction:column;
  text-align:center;
}

.sav-hero-buttons{
  justify-content:center;
}

.sav-hero-features{
  justify-content:center;
}

.sav-hero-title{
  font-size:32px;
}

}

.sav-why-section{
  padding:80px 20px;
  background:#ffffff;
}

.sav-why-container{
  max-width:1200px;
  margin:auto;
}

.sav-why-header{
  text-align:center;
  margin-bottom:60px;
}

.sav-why-header h2{
  font-size:36px;
  color:#1a1a1a;
  margin-bottom:15px;
}

.sav-why-header p{
  max-width:700px;
  margin:auto;
  color:#555;
  font-size:17px;
  line-height:1.6;
}

.sav-why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.sav-why-card{
  background:#f9fbff;
  padding:30px;
  border-radius:10px;
  text-align:center;
  transition:0.3s;
  border:1px solid #eef2ff;
}

.sav-why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.sav-why-icon{
  font-size:40px;
  margin-bottom:15px;
}

.sav-why-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:#222;
}

.sav-why-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* Responsive */

@media(max-width:900px){
  .sav-why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .sav-why-grid{
    grid-template-columns:1fr;
  }

  .sav-why-header h2{
    font-size:28px;
  }
}

.sav-products-section{
  padding:80px 20px;
  background:#f7f9ff;
}

.sav-products-container{
  max-width:1200px;
  margin:auto;
}

.sav-products-header{
  text-align:center;
  margin-bottom:50px;
}

.sav-products-header h2{
  font-size:34px;
  margin-bottom:10px;
  color:#222;
}

.sav-products-header p{
  color:#555;
  font-size:16px;
}

.sav-products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.sav-product-card{
  background:#fff;
  border-radius:10px;
  padding:25px;
  text-align:center;
  border:1px solid #eee;
  transition:0.3s;
}

.sav-product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.sav-product-card img{
  width:120px;
  margin-bottom:15px;
}

.sav-product-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.sav-rating{
  color:#ffb400;
  margin-bottom:10px;
}

.sav-price{
  font-size:20px;
  font-weight:600;
  color:#0066ff;
  margin-bottom:15px;
}

.sav-buy-btn{
  display:inline-block;
  padding:10px 22px;
  background:#0066ff;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:500;
  transition:0.3s;
}

.sav-buy-btn:hover{
  background:#004ecc;
}

/* Responsive */

@media(max-width:900px){
  .sav-products-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .sav-products-grid{
    grid-template-columns:1fr;
  }
}

.sav-faq-section{
  padding:80px 20px;
  background:#ffffff;
}

.sav-faq-container{
  max-width:900px;
  margin:auto;
}

.sav-faq-header{
  text-align:center;
  margin-bottom:40px;
}

.sav-faq-header h2{
  font-size:34px;
  margin-bottom:10px;
  color:#222;
}

.sav-faq-header p{
  color:#555;
  font-size:16px;
}

.sav-faq-item{
  border-bottom:1px solid #eee;
}

.sav-faq-question{
  width:100%;
  text-align:left;
  padding:18px;
  font-size:17px;
  font-weight:600;
  background:none;
  border:none;
  cursor:pointer;
  position:relative;
}

.sav-faq-question::after{
  content:"+";
  position:absolute;
  right:20px;
  font-size:20px;
}

.sav-faq-item.active .sav-faq-question::after{
  content:"−";
}

.sav-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

.sav-faq-answer p{
  padding:0 18px 18px;
  color:#555;
  line-height:1.6;
  font-size:15px;
}
.sav-footer{
  background:#0f172a;
  color:#cbd5e1;
  padding-top:60px;
}

.sav-footer-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.sav-footer-logo{
  width:160px;
  margin-bottom:15px;
}

.sav-footer-col p{
  font-size:14px;
  line-height:1.6;
}

.sav-footer-col h3{
  color:#ffffff;
  margin-bottom:15px;
  font-size:18px;
}

.sav-footer-col ul{
  list-style:none;
  padding:0;
}

.sav-footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
}

.sav-footer-col ul li a{
  text-decoration:none;
  color:#cbd5e1;
  transition:0.3s;
}

.sav-footer-col ul li a:hover{
  color:#3b82f6;
}

.sav-footer-bottom{
  text-align:center;
  padding:20px;
  border-top:1px solid #1e293b;
  margin-top:40px;
  font-size:14px;
}

/* Responsive */

@media(max-width:900px){
  .sav-footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .sav-footer-container{
    grid-template-columns:1fr;
  }
}

.sav-product-detail{
  padding:60px 20px;
  background:#ffffff;
}

.sav-product-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
  align-items:flex-start;
}

.sav-product-image{
  flex:1;
}

.sav-product-image img{
  width:100%;
  max-width:420px;
  border-radius:8px;
}

.sav-product-info{
  flex:1.5;
}

.sav-product-title{
  font-size:28px;
  margin-bottom:15px;
  line-height:1.4;
}

.sav-product-platform{
  margin-bottom:10px;
  color:#555;
}

.sav-product-rating{
  color:#f4b400;
  margin-bottom:15px;
  font-size:16px;
}

.sav-product-price{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.sav-discount{
  color:#d93025;
  font-weight:600;
}

.sav-current-price{
  font-size:28px;
  font-weight:700;
  color:#111;
}

.sav-old-price{
  text-decoration:line-through;
  color:#777;
}

.sav-product-features{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}

.sav-product-features li{
  margin-bottom:8px;
  color:#444;
}

.sav-product-buttons{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.sav-buy-btn{
  background:#0066ff;
  color:#fff;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}

.sav-cart-btn{
  background:#f1f5ff;
  color:#0066ff;
  padding:12px 26px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}

.sav-product-note{
  font-size:14px;
  color:#666;
}

/* Responsive */

@media(max-width:900px){

.sav-product-wrapper{
  flex-direction:column;
  align-items:center;
}

.sav-product-image img{
  max-width:300px;
}

.sav-product-title{
  font-size:22px;
}

}

.eset-content-section{
  padding:70px 20px;
  background:#f9fbff;
}

.eset-content-container{
  max-width:900px;
  margin:auto;
}

.eset-content-heading{
  font-size:32px;
  font-weight:700;
  margin-bottom:25px;
  color:#1a1a1a;
  line-height:1.4;
}

.eset-content-container p{
  font-size:16px;
  color:#444;
  line-height:1.7;
  margin-bottom:18px;
}

/* Responsive */

@media(max-width:768px){

.eset-content-heading{
  font-size:26px;
}

.eset-content-container p{
  font-size:15px;
}

}

.sav-about-section{
  padding:70px 20px;
  background:#f8fafc;
}

.sav-about-container{
  max-width:900px;
  margin:auto;
}

.sav-about-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:25px;
  color:#111;
}

.sav-about-container p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:18px;
}

/* Responsive */

@media(max-width:768px){

.sav-about-title{
  font-size:28px;
}

.sav-about-container p{
  font-size:15px;
}

}

.sav-terms-section{
  padding:70px 20px;
  background:#f8fafc;
}

.sav-terms-container{
  max-width:900px;
  margin:auto;
}

.sav-terms-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:25px;
  color:#111;
}

.sav-terms-heading{
  font-size:22px;
  margin-top:25px;
  margin-bottom:10px;
  color:#222;
}

.sav-terms-container p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:16px;
}

/* Responsive */

@media(max-width:768px){

.sav-terms-title{
  font-size:28px;
}

.sav-terms-heading{
  font-size:20px;
}

.sav-terms-container p{
  font-size:15px;
}

}

.sav-contact-section{
  padding:70px 20px;
  background:#f8fafc;
}

.sav-contact-container{
  max-width:700px;
  margin:auto;
}

.sav-contact-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
  text-align:center;
}

.sav-contact-subtitle{
  text-align:center;
  margin-bottom:35px;
  color:#555;
  font-size:16px;
}

.sav-contact-form{
  background:#fff;
  padding:30px;
  border-radius:8px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.sav-form-group{
  margin-bottom:18px;
}

.sav-form-group label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
  color:#333;
}

.sav-form-group input,
.sav-form-group textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:5px;
  font-size:15px;
}

.sav-form-group input:focus,
.sav-form-group textarea:focus{
  border-color:#0073ff;
  outline:none;
}

.sav-contact-btn{
  width:100%;
  padding:14px;
  background:#0073ff;
  color:#fff;
  font-size:16px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

.sav-contact-btn:hover{
  background:#0056c9;
}

/* Responsive */

@media(max-width:768px){

.sav-contact-title{
  font-size:28px;
}

.sav-contact-form{
  padding:20px;
}

}