:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    --accent: #d4af37;
    --text-light: #666;
    --text-dark: #333;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}
.logo img {
  height: auto; /* Adjust this value to your desired height */
  max-width: 200px; /* Prevents the image from getting too wide on larger screens */
  object-fit: contain; /* Ensures the entire image is visible within its dimensions */
}

/* For screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 767px) {
  .logo img {
    max-width: 120px; /* A slightly smaller size for mobile */
  }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    border-color: var(--accent);
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.header-icons a {
    color: var(--primary);
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.header-icons a:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
nav {
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.category-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-img {
    height: 300px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
 
 .product-name a{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
} 
.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--accent);
}

.wishlist {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist:hover {
    color: var(--accent);
}
/* Wishlist Styles */
.wishlist-section {
    padding: 50px 0;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.wishlist-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wishlist-item-img {
    height: 250px;
    overflow: hidden;
}

.wishlist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wishlist-item:hover .wishlist-item-img img {
    transform: scale(1.05);
}

.wishlist-item-info {
    padding: 20px;
}

.wishlist-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wishlist-item-price {
    margin-bottom: 15px;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 10px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.remove-wishlist {
    background: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-wishlist:hover {
    background-color: #f8f8f8;
    color: #dc3545;
}

.empty-wishlist {
    text-align: center;
    padding: 50px 0;
}

.empty-wishlist p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Order Tracking Styles */
.order-tracking {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.order-tracking h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.tracking-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}

.tracking-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.tracking-step.active .step-icon {
    background-color: var(--accent);
    color: var(--white);
}

.step-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tracking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.tracking-info h4,
.tracking-address h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tracking-items {
    margin-bottom: 30px;
}

.tracking-items h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.tracking-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.tracking-item:last-child {
    border-bottom: none;
}

.tracking-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.tracking-item-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.tracking-item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.tracking-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Search Suggestions */
.search-bar {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-suggestion:hover {
    background-color: var(--secondary);
}

.search-suggestion img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

.suggestion-info h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.suggestion-info p {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

.no-suggestions {
    padding: 15px;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-timeline {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tracking-timeline::before {
        top: 0;
        bottom: 0;
        left: 25px;
        right: auto;
        width: 2px;
        height: auto;
    }
    
    .tracking-step {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .step-icon {
        margin: 0 15px 0 0;
    }
    
    .tracking-details {
        grid-template-columns: 1fr;
    }
    
    .tracking-actions {
        flex-direction: column;
    }
    
    .tracking-actions .btn,
    .tracking-actions .btn-secondary {
        width: 100%;
    }
}
/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--secondary);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-list li:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* Shop Section */
.shop-section {
    padding: 50px 0;
}

.shop-container {
    display: flex;
    gap: 30px;
}

/* Sidebar Filters */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 25px;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.filter-list input {
    margin-right: 10px;
    accent-color: var(--accent);
}

.price-range {
    margin-top: 15px;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.price-inputs input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.filter-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.filter-btn:hover {
    background-color: var(--accent);
}

/* Products Area */
.products-area {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-count {
    font-size: 1.1rem;
    color: var(--text-light);
}

.sort-dropdown {
    position: relative;
}

.sort-dropdown select {
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
    appearance: none;
    cursor: pointer;
    font-weight: 500;
}

.sort-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pagination a:hover {
    background-color: var(--accent);
    color: var(--white);
}

.pagination a.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Product Details */
.product-details {
    padding: 50px 0;
}

.product-container {
    display: flex;
    gap: 50px;
}

/* Product Gallery */
.product-gallery {
    flex: 1;
}

.main-image {
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: var(--accent);
}

.review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Product Options */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover {
    border-color: var(--accent);
}

.size-option.active {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary);
}

.color-option.black {
    background-color: #000;
}

.color-option.white {
    background-color: #fff;
    border: 1px solid #ddd;
}

.color-option.blue {
    background-color: #1e40af;
}

.color-option.red {
    background-color: #b91c1c;
}

/* Quantity and Add to Cart */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--secondary);
}

.quantity-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.add-to-cart-large {
    flex: 1;
    padding: 12px 20px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.add-to-cart-large:hover {
    background-color: var(--accent);
}

.wishlist-large {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-large:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

/* Product Meta */
.product-meta {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* Tabs */
.product-tabs {
    margin-top: 50px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab-header {
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-header:hover {
    color: var(--accent);
}

.tab-header.active {
    color: var(--accent);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table tr:nth-child(even) {
    background-color: var(--secondary);
}

.spec-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 30%;
}

/* Reviews */
.review {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-img {
    height: 250px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-card:hover .related-img img {
    transform: scale(1.1);
}

.related-info {
    padding: 20px;
}

.related-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.related-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

/* Auth Forms */
.auth-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.auth-title p {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification i {
    font-size: 1.2rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .search-bar {
        width: 200px;
    }
    
    .product-container {
        flex-direction: column;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 30px;
    }
    
    .shop-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .add-to-cart-large {
        width: 100%;
    }

    .wishlist-large {
        width: 100%;
    }

    .tab-headers {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-header {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-image {
        height: 300px;
    }

    .thumbnail {
        width: 70px;
        height: 70px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}


/*===========================================*/

/* Cart Section */
.cart-section {
    padding: 50px 0;
}

.cart-container {
    display: flex;
    gap: 30px;
}

.cart-items {
    flex: 2;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th {
    background-color: var(--secondary);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-summary {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.remove-btn:hover {
    color: #dc3545;
}

/* Orders Section */
.orders-section {
    padding: 50px 0;
}

.orders-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.order-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.order-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.status-badge.pending {
    background-color: #ffc107;
    color: var(--white);
}

.status-badge.processing {
    background-color: #17a2b8;
    color: var(--white);
}

.status-badge.shipped {
    background-color: #007bff;
    color: var(--white);
}

.status-badge.delivered {
    background-color: #28a745;
    color: var(--white);
}

.status-badge.cancelled {
    background-color: #dc3545;
    color: var(--white);
}

.order-items {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    gap: 15px;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.shipping-address h4,
.payment-method h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.shipping-address p,
.payment-method p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.empty-orders {
    text-align: center;
    padding: 50px 0;
}

.empty-orders p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Checkout Section */
.checkout-section {
    padding: 50px 0;
}

.checkout-container {
    display: flex;
    gap: 30px;
}

.checkout-form {
    flex: 2;
}

.checkout-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--accent);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    color: var(--accent);
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.payment-option-content i {
    font-size: 1.2rem;
}

.checkout-summary {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    height: fit-content;
}

.checkout-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Order Confirmation Section */
.order-confirmation-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.confirmation-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.order-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.order-info, .shipping-info {
    flex: 1;
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 5px;
}

.order-info h3, .shipping-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-row span:first-child {
    color: var(--text-light);
}

.order-items {
    margin-bottom: 30px;
    text-align: left;
}

.order-items h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.item-card {
    display: flex;
    gap: 15px;
    background-color: var(--secondary);
    padding: 15px;
    border-radius: 5px;
}

.item-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-container {
        flex-direction: column;
    }
    
    .checkout-container {
        flex-direction: column;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-details {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .order-items {
        grid-template-columns: 1fr;
    }
    
    .order-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .confirmation-container {
        padding: 20px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn,
    .confirmation-actions .btn-secondary {
        width: 100%;
    }
}


/*====================Account=========*/

/* Account Section */
.account-section {
    padding: 50px 0;
}

.account-container {
    display: flex;
    gap: 30px;
}

.account-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.account-menu {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.account-menu li {
    border-bottom: 1px solid #eee;
}

.account-menu li:last-child {
    border-bottom: none;
}

.account-menu li.active a {
    background-color: var(--accent);
    color: var(--white);
}

.account-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.account-menu a:hover {
    background-color: var(--secondary);
}

.account-content {
    flex: 1;
}

.welcome-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.welcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.account-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.info-row span:first-child {
    font-weight: 600;
    color: var(--text-light);
}

.recent-orders {
    margin-bottom: 20px;
}

.order-summary {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-summary:last-child {
    border-bottom: none;
}

.order-number {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.order-date {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.view-all {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .account-container {
        flex-direction: column;
    }
    
    .account-sidebar {
        width: 100%;
    }
    
    .account-menu {
        display: flex;
        overflow-x: auto;
    }
    
    .account-menu li {
        flex-shrink: 0;
        border-bottom: none;
        border-right: 1px solid #eee;
    }
    
    .account-menu li:last-child {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .account-info {
        grid-template-columns: 1fr;
    }
}

/*========================*/
/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 30px;
    text-align: center;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Wishlist Section */
.wishlist-section {
    padding: 80px 0;
}

.wishlist-container {
    text-align: center;
    padding: 50px 0;
}

.wishlist-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 50px 0;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container,
    .contact-container {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 10px;
        margin-left: 20px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/*===========wish list count======*/
.wishlist-count {
    position: absolute;
    top: -8px;
    right: 2px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist Section */
.wishlist-section {
    padding: 50px 0;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.wishlist-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wishlist-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wishlist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wishlist-card:hover .wishlist-img img {
    transform: scale(1.05);
}

.remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.remove-wishlist:hover {
    background-color: var(--white);
    color: #dc3545;
}

.wishlist-info {
    padding: 20px;
}

.wishlist-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.wishlist-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
}

.wishlist-actions .add-to-cart {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.wishlist-actions .add-to-cart:hover {
    background-color: var(--accent);
}

.wishlist-actions .btn-secondary {
    flex: 1;
    padding: 8px 15px;
    text-align: center;
}

.empty-wishlist {
    text-align: center;
    padding: 50px 0;
}

.empty-wishlist p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}



/* Add these styles to assets/css/style.css */

/* Stock Status */
.stock-status {
    margin: 15px 0;
}

.in-stock {
    color: #28a745;
    font-weight: 600;
}

.out-of-stock {
    color: #dc3545;
    font-weight: 600;
}

/* Social Share */
.social-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-share h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--secondary);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Review Form */
.add-review {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.add-review h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--accent);
}

/* Review Section */
.review {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Product Details Enhancements */
.product-gallery {
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Responsive adjustments for product details */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
    
    .product-gallery {
        margin-bottom: 30px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-large,
    .wishlist-large {
        width: 100%;
    }
}





/* Error Section */
.error-section {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.error-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.error-actions .btn,
.error-actions .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.error-actions .btn {
    background-color: var(--primary);
    color: var(--white);
}

.error-actions .btn:hover {
    background-color: var(--accent);
}

.error-actions .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.error-actions .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-container h1 {
        font-size: 2rem;
    }
    
    .error-container p {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn,
    .error-actions .btn-secondary {
        width: 200px;
    }
}

/*===============================*/
/* Referral Program Styles */
.referral-info {
    margin-bottom: 20px;
}

.referral-code, .referral-link {
    margin-bottom: 15px;
}

.referral-code label, .referral-link label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.code-display {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: #495057;
}

.link-display {
    display: flex;
    align-items: center;
}

.link-display input {
    flex-grow: 1;
    border: 1px solid #dee2e6;
    border-radius: 4px 0 0 4px;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
}

.copy-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #0069d9;
}

.referral-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

.referred-users, .referral-earnings {
    margin-top: 20px;
}

.referred-users h4, .referral-earnings h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.users-list, .earnings-list {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.user-item, .earning-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.user-item:last-child, .earning-item:last-child {
    border-bottom: none;
}

.user-info, .earning-info {
    flex-grow: 1;
}

.user-name {
    display: block;
    font-weight: 600;
}

.user-email {
    display: block;
    font-size: 14px;
    color: #6c757d;
}

.user-stats {
    text-align: right;
}

.orders-count {
    display: block;
    font-size: 14px;
    color: #6c757d;
}

.total-spent {
    font-weight: 600;
}

.referred-user {
    display: block;
    font-weight: 600;
}

.earning-date {
    display: block;
    font-size: 14px;
    color: #6c757d;
}

.earning-amount {
    font-weight: 600;
    color: #28a745;
}