/* General Styles */
body {
    font-family: 'Lora', serif; /* Use elegant fonts for a handicraft feel */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

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

.primary-navigation .nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-navigation .nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.primary-navigation .nav-menu li a:hover {
    color: #b28f77; /* Accent color for hover */
}

.header-search input[type="search"] {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
    background-color: #f7f3f0;
}

.hero-left img {
    max-width: 100%;
    border-radius: 5px;
}

.hero-right h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.hero-right p {
    font-size: 18px;
    color: #b28f77;
    font-weight: bold;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

.new-arrivals h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.new-arrivals .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.new-arrivals .products img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    background-color: #f7f3f0;
    padding: 40px 0;
    text-align: center;
}

.features .feature {
    width: 30%;
}

.features .feature h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.features .feature p {
    color: #666;
}

/* Newsletter Section */
.newsletter {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.newsletter h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.newsletter p {
    color: #666;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #b28f77;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #a27a66;
}

/* Blog Section */
.blog {
    background-color: #fafafa;
    padding: 50px 0;
    text-align: center;
}

.blog h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.blog .blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog .blog-post {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog .blog-post h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.blog .blog-post a {
    color: #b28f77;
    text-decoration: none;
}

.blog .blog-post a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-widgets .footer-widget {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #b28f77;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.hero-item {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-text {
  margin-top: 10px;
}

.hero-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #b28f77;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
}

.hero-text h2 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #333;
  font-size: 20px;
  margin: 5px 0 0 0;
}

.hero-center {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.hero-center-content {
  text-align: center;
}

.hero-center-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.hero-center-content h1 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 28px;
  color: #333;
  margin: 10px 0;
  line-height: 1.4;
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #f16c3d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-badge span {
  font-size: 12px;
  font-weight: 400;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.header-logo img {
  height: 80px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-navigation ul li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.main-navigation ul li a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.main-navigation ul li.active a,
.main-navigation ul li a:hover {
  color: #f16c3d;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.social-icons li a {
  font-size: 16px;
  color: #b28f77;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #f16c3d;
}

.header-cart-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cart-search a {
  font-size: 16px;
  color: #333;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-cart-search a:hover {
  color: #f16c3d;
}

.header-cart-search span {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #f16c3d;
  color: #fff;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.new-arrivals {
    padding: 50px 0;
    background-color: #fafafa;
    text-align: center;
}

.new-arrivals .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.new-arrivals .section-subtitle {
    font-size: 18px;
    color: #999;
    margin-bottom: 30px;
}

.new-arrivals .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 15px;
}

.rating .star {
    font-size: 16px;
    color: #ffc107;
    margin-right: 2px;
}

.rating .star.filled {
    color: #ffc107;
}

.add-to-cart {
    margin-top: 15px;
}

.add-to-cart .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e67e22;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.add-to-cart .button:hover {
    background-color: #d35400;
    color: #fff;
}
