:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}
.logo-text-animation {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    overflow: hidden;
}

.logo-text-line1, .logo-text-line2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-text-line1 {
    font-size: 1.2rem;
    line-height: 1;
    transition-delay: 0.3s;
}

.logo-text-line2 {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #e74c3c;
    transition-delay: 0.5s;
}

/* Animation on load */
.loaded .logo-text-line1,
.loaded .logo-text-line2 {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-text-line1 {
        font-size: 1rem;
    }
    .logo-text-line2 {
        font-size: 0.7rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
/* Add all the CSS from your original file here */
/* This should include all the styles from your original CSS */

/* Additional styles for the PHP version */
.current-filter {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.main-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-meta {
    margin: 20px 0;
}

.product-meta span {
    display: block;
    margin-bottom: 10px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.related-products {
    margin-top: 50px;
}

/* Admin specific styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .product-details-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-accent {
    background-color: var(--accent-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Animated Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-animated {
    display: flex;
    align-items: center;
    position: relative;
}

.diamond-logo {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.diamond-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #1a252f);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-text {
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 5px;
    transform: translateY(0);
    transition: var(--transition);
}

.logo-text-bottom {
    color: var(--white);
    font-size: 0.5rem;
    font-weight: 700;
    margin-top: -5px;
}

.export-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.tassel {
    position: absolute;
    width: 8px;
    height: 30px;
    background: linear-gradient(to bottom, #d4af37, #f1c40f);
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    transform-origin: top center;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tassel-left {
    left: -10px;
}

.tassel-right {
    right: -10px;
}

.tassel::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

/* Logo Animation on Load */
.loaded .tassel {
    animation: tasselDrop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.loaded .tassel-left {
    animation-delay: 0.3s;
}

.loaded .tassel-right {
    animation-delay: 0.5s;
}

.loaded .logo-text {
    animation: textBounce 0.8s ease forwards;
}

.loaded .logo-text-bottom {
    animation: textBounce 0.8s ease 0.2s forwards;
}

.loaded .export-text {
    animation: fadeInRight 0.8s ease 0.8s forwards;
}

@keyframes tasselDrop {
    0% {
        transform: translateY(-50%) scaleY(0);
    }
    80% {
        transform: translateY(-50%) scaleY(1.1);
    }
    100% {
        transform: translateY(-50%) scaleY(1);
    }
}

@keyframes textBounce {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    60% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    transition: var(--transition);
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.search-container {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
}

#search-input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 200px;
    transition: var(--transition);
}

#search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

#search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

#search-btn:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/her.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

/* New Logo Styles */
.logo-img-link {
  display: flex;
  align-items: center;
  height: 70px; /* Adjust based on your logo's aspect ratio */
}

.custom-logo {
  height: 100%; /* Maintains aspect ratio */
  width: auto; /* Prevents stretching */
  max-width: 250px; /* Limits size on large screens */
  transition: var(--transition);
}

/* Mobile logo scaling */
@media (max-width: 768px) {
  .custom-logo {
    max-width: 180px; /* Smaller on mobile */
  }
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.owner-details {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.owner-details h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.owner-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.owner-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.owner-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.owner-info p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.owner-info i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mission, .vision {
    padding: 25px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission h3 i {
    color: var(--secondary-color);
}

.vision h3 i {
    color: var(--accent-color);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-color);
}

.products-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.product-subcategory {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    margin-left: 5px;
}

.product-description {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-btn {
    width: 100%;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #e74c3c;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e74c3c;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.footer-address {
    font-style: normal;
}

.address-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.address-line i {
    margin-right: 10px;
    color: #e74c3c;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Add this to your CSS */
.mega-menu {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
    border-radius: 0 0 10px 10px;
}

.mega-menu:hover .mega-menu-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-column {
    padding: 10px;
}

.category-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--secondary-color);
}

.subcategory-list {
    list-style: none;
}

.subcategory-list li {
    margin-bottom: 8px;
}
/* Product Cards */
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Product Details Page */
#product-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

#specifications-list {
    list-style: none;
    padding: 0;
}

#specifications-list li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

.subcategory-list a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.subcategory-list a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image,
    .about-content {
        flex: none;
        width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .diamond-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 0.5rem;
    }
    
    .logo-text-bottom {
        font-size: 0.4rem;
    }
    
    .export-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .search-container {
        margin: 15px auto;
        order: 3;
        width: 100%;
        display: none;
    }
    
    .search-container.active {
        display: flex;
    }
    
    #search-input {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .products-filter {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .diamond-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.4rem;
    }
    
    .logo-text-bottom {
        font-size: 0.3rem;
    }
    
    .export-text {
        font-size: 0.7rem;
    }
}
/* Add these to your existing CSS */
.product-search {
    display: flex;
    margin-bottom: 30px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.product-search input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.product-search button {
    padding: 0 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 8px 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.product-details {
    display: flex;
    gap: 30px;
}

.product-details-image {
    flex: 1;
}

.product-details-image img {
    width: 100%;
    border-radius: 8px;
}

.product-details-info {
    flex: 1;
}

.product-details-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    color: var(--primary-color);
    grid-column: 1 / -1;
}

.loading-spinner i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 30px;
    color: #dc3545;
    font-size: 18px;
    grid-column: 1 / -1;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 30px;
    color: var(--gray-color);
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Mega Dropdown Styles */
.mega-dropdown {
    position: static !important;
}

.mega-menu-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px 0;
    display: none;
    z-index: 1000;
    border-top: 1px solid #eee;
}

.mega-dropdown:hover .mega-menu-wrapper {
    display: block;
}

.mega-menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.mega-category {
    margin-bottom: 15px;
}

.mega-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-size: 18px;
}

.mega-category h3 a {
    color: inherit;
    text-decoration: none;
}

.mega-subcategories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-subcategories a {
    display: block;
    padding: 5px 0;
    color: #555;
    transition: all 0.3s;
    text-decoration: none;
}

.mega-subcategories a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mega-view-all {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mega-menu-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mega-dropdown:hover .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    display: block;
}