/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

h5 {
    font-size: 20px !important;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    margin: 0 auto;
}

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

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 140px;
}

.search-bar {
    display: flex;
    width: 50%;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-right: none;
}

.search-bar button {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
}

.header-icons a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.header-icons i {
    margin-right: 5px;
}

nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* Hero Section */
.hero-main {
    padding: 30px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

.category-sidebar {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.category-sidebar h3 {
    margin-top: 0;
    font-size: 18px;
}

.category-sidebar ul {
    list-style: none;
    padding: 0;
}

.category-sidebar li a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.hero-banner {
    position: relative;
}

.hero-banner img {
    width: 100%;
}

.hero-banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
}

.hero-banner-content h2 {
    font-size: 48px;
    margin: 0;
}

.hero-banner-content h3 {
    font-size: 36px;
    margin: 10px 0;
}

.btn {
    background: linear-gradient(135deg, #22c1c3 0%, #fdbb2d 100%);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Our Categories */
.our-categories {
    padding: 50px 0;
    text-align: center;
}

.category-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.category-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Our Favorites */
.our-favorites {
    padding: 50px 0;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
}

.price {
    font-weight: bold;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #22c1c3 0%, #fdbb2d 100%);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 50px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    width: 22%;
}

.footer-column h4 {
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Override to ensure product cards are visible */
.product-card {
    visibility: visible !important;
}

/* Gradient for icons */
.gradient-icon {
    background: linear-gradient(135deg, #22c1c3 0%, #fdbb2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

[data-aos] {
    opacity: 1 !important;
}