
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fafafa;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background-color: white;
            border-bottom: 1px solid #ddd;
        }
        header h1 {
            font-family: 'Georgia', serif;
            font-weight: normal;
            color: #b35c30;
        }
        nav {
            display: flex;
            gap: 40px;
        }
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }
        nav a:hover {
            color: #b35c30;
        }

        .social {
            display: flex;
            gap: 10px;
        }
        .social a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
        }
/* ==========================
   Dropdown Menu
========================== */
.dropdown{
    position:relative;
}

.dropdown-content{

    display:none;

    position:absolute;

    top:100%;
    left:0;

    min-width:180px;

    background:#fff;

    border-radius:8px;

    border:1px solid #eee;

    box-shadow:0 8px 18px rgba(0,0,0,.12);

    overflow:hidden;

    z-index:999;

}

.dropdown-content a{

    display:block;

    padding:12px 18px;

    color:#333;

    text-decoration:none;

}

.dropdown-content a:hover{

    background:#f7f7f7;

    color:#b35c30;

}

.dropdown:hover .dropdown-content{

    display:block;

}
        

        
/* color examples — set brand color or keep neutral */
.social-link.facebook { color:#1877F2; }   /* facebook blue */
.social-link.instagram { color:#C13584; }  /* instagram accent (or gradient if desired) */
.social-link.tiktok { color:#000000; }     /* monochrome; you can add gradient if preferred */
.social-link.viber { color:#665CAC; }      /* viber purple */
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            padding: 5px;
        }
        .product {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .product img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        .product h3 {
            margin: 10px 0 5px 0;
            font-size: 16px;
            color: #333;
        }
        .product p {
            margin: 0;
            font-style: italic;
            color: #b35c30;
        }
	.product:hover {
	  transform: translateY(-5px);
  	box-shadow: 0 6px 15px rgba(0,0,0,0.15);
	}


	/* Layout Container */
  	.container {
  	display: flex;
	gap:20px;
    	padding: 40px 20px 20px 20px;
   	justify-content: center;
   	 align-items: flex-start;
 	 }

	
	 /* Sidebar (Categories) */
	  .sidebar {
  	  width: 280px;
  	  background-color: #fff;
  	  border-radius: 12px;
  	  box-shadow: 0 0 8px rgba(0,0,0,0.1);
 	  padding: 20px; 
 	 }

 	 .sidebar h3 {
  	  margin-bottom: 18px;
	  color: #333;
  	  font-weight: 600;
 	 }

 	 .sidebar label {
  	  display: block;
  	  margin: 6px 0;    
	  }

.my-line {
  border: none; /* Remove default border */
  border-top: 1px solid #ddd; /* Create a 1px solid black line */
  width: 250px; /* Set the length of the line */
  margin: 10px 0; /* Add some vertical spacing (optional) */
}

  label a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
}
  label a:hover {
            color: #b35c30;
		}

	/* Right column (products) */
	main {
   	 width: 1200px;
	}


.footbar {
    margin-bottom: 24px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}
.pager button {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}    

.product-link,
.product-link:link,
.product-link:visited,
.product-link:hover,
.product-link:active {
    display: block;
    text-decoration: none;
    color: inherit;
}


/* Back To Top */
.back-to-top{
    background:#37475A;
    text-align:center;
    padding:15px 0;
}

.back-to-top a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.back-to-top:hover{
    background:#485769;
}


/* =====================================
   FOOTER
===================================== */

footer{

    width:100%;

    background:#232F3E;

    color:#e0d8d8;

    margin:0;

    padding:60px 0;

    box-sizing:border-box;

}

.footer-container{

    max-width:1500px;

    margin:0 auto;

    padding:0 40px;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

}

.footer-col{

    flex:1;

}

.footer-col h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer-col p{

    line-height:1.8;

    margin:8px 0;

}

.footer-col a{

    display:block;

    color:#b35c30;

    text-decoration:none;

    margin-bottom:10px;

}

.footer-col a:hover{

    text-decoration:underline;

}

/* Join Us */

.footer-col i{
    width:24px;
    margin-right:10px;
    font-size:18px;
}

.footer-col a{
    color:#e0d8d8;
    transition:0.3s;
}

.footer-col a:hover{
    color:#b35c30;
    text-decoration:none;
}

/* About Us Page */

.about-us {
    padding: 50px 20px;
    background-color: #f8f8f8;
    width:100%;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
}

.about-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

.about-container h2 {
    margin-bottom: 20px;
}

.about-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-message {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
}
.brand-title {
    color: #b35c30;
    font-style: italic;
}
.visit-store-link {
    display: inline-block;
    margin-top: 8px;
    color: #00aeef;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.visit-store-link:hover {
    text-decoration: none;
}