/*
Theme Name: FIOK
Theme URI: https://wordpress.fioktec.com
Author: FIOK
Author URI: https://fioktec.com
Description: FIOK - Power In Your Style. A modern, minimalist theme for showcasing power bank products with clean design and responsive layout.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fiok
Tags: e-commerce, minimalist, modern, responsive-layout
*/

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

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #FFFFFF;
  color: #333333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.site-header .logo img {
  height: 40px;
}

.site-header .main-nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.site-header .main-nav a:hover {
  color: #000;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: #F5F5F5;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
  max-width: 600px;
}

.hero-section .btn-primary {
  background: #333333;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.hero-section .btn-primary:hover {
  background: #555555;
}

.features-section {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  text-align: center;
}

.features-section .feature-item {
  flex: 1;
  margin: 0 1rem;
}

.features-section .feature-item img {
  height: 50px;
  width: 50px;
}

.features-section .feature-item p {
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.products-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: 0.3s;
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  height: auto;
}

.product-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.product-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-card .btn-secondary {
  background: #333;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.product-card .btn-secondary:hover {
  background: #555;
}

.brand-story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  background: #F5F5F5;
}

.brand-story-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.brand-story-section p {
  max-width: 600px;
  color: #666;
}

.lifestyle-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lifestyle-section img {
  width: 100%;
  border-radius: 12px;
  height: auto;
}

.reviews-section {
  padding: 3rem 2rem;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.reviews-section .review-item {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 2rem;
  background: #F5F5F5;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.site-footer a {
  color: #555;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #333;
}

@media (max-width: 768px) {
  .features-section {
    flex-direction: column;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .site-header .main-nav a {
    margin-left: 0;
    margin: 0 0.75rem;
  }
}
