:root {
--primary: #7c4dff;
--secondary: #ff4081;
--accent: #18ffff;
--dark: #1a237e;
--light: #f5f5f7;
--gray: #5f6368;
--success: #4caf50;
--warning: #ff9800;
--dark-gradient: linear-gradient(135deg, var(--dark) 0%, #311b92 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #333;
line-height: 1.6;
background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
overflow-x: hidden;
position: relative;
}
a {
color: #333;
text-decoration: none;
}
img {
border-style: none;
display: inline-block;
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
.page-num-current {
    background-color: #007bff !important;
    color: #fff !important;
    padding: 5px 10px !important;
/*  border-radius: 3px !important; */
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0% { transform: translateY(0px) rotate(3deg); }
50% { transform: translateY(-20px) rotate(3deg); }
100% { transform: translateY(0px) rotate(3deg); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
/* Header Styles */
header {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
animation: fadeIn 0.8s ease-out;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.logo {
display: flex;
align-items: center;
}
.logo-icon {
color: var(--primary);
font-size: 28px;
margin-right: 10px;
}
.logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 24px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
position: relative;
padding: 5px 0;
}
nav ul li a.active {
color: var(--primary);
border-bottom: 3px solid var(--primary);
}
nav ul li a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
nav ul li a:hover:after {
width: 100%;
}
nav ul li a:hover {
color: var(--primary);
}
.cta-button {
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px 28px;
border-radius: 30px;
font-weight: 500;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(124, 77, 255, 0.6);
animation: pulse 1s infinite;
}
/* Mobile Menu */
.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 21px;
cursor: pointer;
position: relative;
z-index: 1001;
}
.menu-toggle span {
display: block;
height: 3px;
width: 100%;
background: var(--dark);
border-radius: 3px;
transition: all 0.3s ease;
}
.mobile-nav {
position: fixed;
top: 0;
right: 0;
width: 85%;
max-width: 300px;
z-index: 1000;
background: rgba(26, 35, 126, 0.95);
padding: 25px;
overflow-y: auto;
display: none;
transition: opacity 0.3s ease;
opacity: 0;
transform: translateX(100%);
transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.active {
display: block;
opacity: 1;
transform: translateX(0);
}
.mobile-nav::before {
content: "Menu";
display: block;
color: var(--accent);
font-weight: 700;
font-size: 22px;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-nav ul {
list-style: none;
}
.mobile-nav ul li {
margin-bottom: 8px;
}
.mobile-nav ul li a {
text-decoration: none;
color: white;
font-size: 18px;
display: block;
padding: 16px 20px;
border-radius: 8px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.08);
}
.mobile-nav ul li a:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateX(5px);
}
.close-menu {
position: absolute;
top: 25px;
right: 25px;
font-size: 24px;
cursor: pointer;
background: rgba(255, 255, 255, 0.15);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
display: none;
transition: opacity 0.3s ease;
opacity: 0;
}
.overlay.active {
display: block;
opacity: 1;
}
/* Breadcrumbs */
.breadcrumbs {
padding: 20px 0;
background: white;
border-radius: 10px;
margin: 30px 0;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.breadcrumbs ul {
display: flex;
list-style: none;
}
.breadcrumbs li {
margin-right: 10px;
font-size: 14px;
color: var(--gray);
}
.breadcrumbs li:after {
content: '/';
margin-left: 10px;
color: var(--gray);
}
.breadcrumbs li:last-child:after {
content: none;
}
.breadcrumbs a {
color: var(--primary);
text-decoration: none;
}
.breadcrumbs a:hover {
text-decoration: underline;
}
/* Product Listing Layout */
.product-listing {
display: flex;
gap: 30px;
margin: 40px 0;
}
.sidebar {
flex: 0 0 280px;
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
height: fit-content;
animation: fadeIn 0.6s ease-out;
}
.sidebar-section {
margin-bottom: 30px;
padding-bottom: 25px;
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sidebar-section:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.sidebar h3 {
font-family: 'Montserrat', sans-serif;
font-size: 22px;
margin-bottom: 20px;
color: var(--dark);
position: relative;
padding-bottom: 10px;
}
.sidebar h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: var(--secondary);
border-radius: 2px;
}
.category-list {
list-style: none;
}
.category-list li {
margin-bottom: 15px;
}
.category-list a {
display: flex;
align-items: center;
text-decoration: none;
color: var(--gray);
transition: all 0.3s ease;
padding: 8px 0;
}
.category-list a:hover {
color: var(--primary);
transform: translateX(5px);
}
.category-list a i {
margin-right: 10px;
color: var(--primary);
}
.filter-group {
margin-bottom: 20px;
}
.filter-group h4 {
font-size: 18px;
margin-bottom: 15px;
color: var(--dark);
}
.filter-options {
list-style: none;
}
.filter-options li {
margin-bottom: 12px;
display: flex;
align-items: center;
}
.filter-options input {
margin-right: 10px;
}
.filter-options label {
cursor: pointer;
color: var(--gray);
}
.filter-options input:checked + label {
color: var(--primary);
font-weight: 500;
}
.product-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
animation: fadeIn 0.6s ease-out;
margin-bottom: 10px;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.product-tag {
position: absolute;
top: 15px;
left: 15px;
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
z-index: 2;
}
.trending {
background: var(--secondary);
color: white;
}
.new {
background: var(--primary);
color: white;
}
.sale {
background: var(--success);
color: white;
}
.product-image {
background: linear-gradient(45deg, #f5f7fa, #e4edf5);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.product-image img {
width: 100%;
}
.product-image i {
font-size: 80px;
color: var(--primary);
opacity: 0.7;
}
.product-info {
padding: 15px;
}
.product-info h3 {
font-size: 22px;
margin-bottom: 10px;
color: var(--dark);
}
.product-description {
font-size: 15px;
color: var(--gray);
margin-bottom: 15px;
/* min-height: 70px; */
}
/* Main Product Grid */
.products-grid {
flex: 1;
}
.products-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
background: white;
padding: 20px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.products-header h1 {
font-family: 'Montserrat', sans-serif;
font-size: 32px;
color: var(--dark);
}
.sort-options {
display: flex;
align-items: center;
}
.sort-options label {
margin-right: 10px;
color: var(--gray);
}
.sort-options select {
padding: 10px 15px;
border-radius: 30px;
border: 1px solid #ddd;
background: white;
color: var(--dark);
font-family: 'Poppins', sans-serif;
}
.grid-layout {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
}
.product-card1 {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
animation: fadeIn 0.6s ease-out;
}
.product-card1:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.product-image1 {
background: linear-gradient(45deg, #f5f7fa, #e4edf5);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.product-image1 i {
font-size: 80px;
color: var(--primary);
opacity: 0.7;
}
.product-info1 {
padding: 15px;
}
.product-info1 h3 {
font-size: 22px;
margin-bottom: 10px;
color: var(--dark);
}
.product-description1 {
font-size: 15px;
color: var(--gray);
margin-bottom: 15px;
min-height: 70px;
}
.product-meta {
display: flex;
justify-content: space-between;
font-size: 14px;
color: var(--gray);
margin-top: 15px;
}
.product-rating {
color: var(--warning);
}
.product-stock {
color: var(--success);
font-weight: 500;
}
.product-actions {
display: flex;
gap: 10px;
margin-top: 20px;
}
.add-to-cart {
flex: 1;
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px;
border-radius: 8px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.add-to-cart:hover {
opacity: 0.9;
transform: translateY(-2px);
}
.view-details {
background: white;
color: var(--primary);
border: 2px solid var(--primary);
padding: 10px 15px;
border-radius: 8px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
}
.view-details:hover {
background: var(--primary);
color: white;
}
.pagination {
display: flex;
justify-content: center;
margin-top: 50px;
gap: 10px;
}
.pagination a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: white;
color: var(--dark);
text-decoration: none;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.pagination a:hover, .pagination a.active {
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
}
/* Footer */
footer {
background: var(--dark);
color: white;
padding: 100px 0 30px;
margin-top: 80px;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-logo {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
color: var(--accent);
}
.footer-about p {
opacity: 0.8;
margin-bottom: 20px;
}
.social-icons {
display: flex;
gap: 15px;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: white;
transition: all 0.3s ease;
}
.social-icons a:hover {
background: var(--primary);
transform: translateY(-3px);
}
.footer-links h3 {
font-size: 18px;
margin-bottom: 20px;
color: var(--accent);
}
.footer-links ul {
list-style: none;
}
.footer-links ul li {
margin-bottom: 12px;
}
.footer-links ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links ul li a:hover {
color: var(--accent);
padding-left: 5px;
}
.footer-contact h3 {
font-size: 18px;
margin-bottom: 20px;
color: var(--accent);
}
.contact-info {
margin-bottom: 20px;
}
.contact-info p {
display: flex;
align-items: center;
margin-bottom: 10px;
opacity: 0.8;
}
.contact-info i {
margin-right: 10px;
color: var(--accent);
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 14px;
opacity: 0.7;
}
/* Responsive Design */
@media (max-width: 992px) {
.sidebar {
flex: 0 0 240px;
}
.grid-layout {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}
@media (max-width: 768px) {
nav ul {
display: none;
}
.menu-toggle {
display: flex;
}
.product-listing {
flex-direction: column;
}
.sidebar {
order: 2;
margin-top: 30px;
}
.products-header {
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
.sort-options {
width: 100%;
justify-content: space-between;
}
}
@media (max-width: 576px) {
.grid-layout {
grid-template-columns: 1fr;
}
.product-actions {
flex-direction: column;
}
}