/* Base Styles */
:root {
    --primary-color: #2ecc71; /* Green */
    --secondary-color: #3498db; /* Blue */
    --accent-color: #2980b9; /* Darker Blue */
    --light-color: #ffffff;
    --dark-color: #2c3e50;
    --gray-color: #ecf0f1;
    --text-color: #333333;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.cta-button, .buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover, .buy-now:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button i, .buy-now i {
    margin-left: 8px;
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    left: 40px;
    background-color: ;
    color: var(--dark-color);
    position: relative;
}
.logo-image{
    position: absolute;
    display: inline-block;
    height: 50px; 
    top: -10px;
    width: 50px;
}
.logo-text{
    margin-left: 60px;
}
.logo-highlight {
    position: absolute;
    bottom: -10px;
    top: auto;
    left: 10px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0.8);
    transition: var(--transition);
}

.logo:hover .logo-highlight {
    transform: scaleX(1);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    margin-right: 50px;
}

.main-nav a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark-color);
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Mobile Navigation - Updated */
.mobile-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px; /* Height of mobile-nav */
    right: 20px;
    width: 200px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 15px;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transform-origin: top right;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu li {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu li:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu a {
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--dark-color);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 1003;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
    transform-origin: right center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg);
    width: 28px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg);
    width: 28px;
}

/* Ensure header doesn't move when menu opens */
body.menu-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .header-container {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 180px;
        right: 10px;
    }
}
.mobile-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
/* Enhanced Hero Section with Background Image */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: var(--gray-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
    position: relative;
    overflow: hidden;
}

/* Background Image with Darkening and Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darkens the image */
    
    /* Subtle continuous movement */
    animation: bgSlowPan 30s infinite alternate ease-in-out;
    transform-origin: center;
}

/* Background Animation */
@keyframes bgSlowPan {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    50% {
        transform: scale(1.05) translateX(-2%) translateY(-1%);
    }
    100% {
        transform: scale(1.1) translateX(2%) translateY(1%);
    }
}

/* Content Styling (unchanged) */
.hero-content {
    position: relative;
    z-index: 2;
    /* Your existing glass-morphism styles */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-bg-img {
        animation: bgSlowPanMobile 30s infinite alternate ease-in-out;
    }
    
    @keyframes bgSlowPanMobile {
        0% { transform: scale(1) translateX(0); }
        100% { transform: scale(1.1) translateX(-5%); }
    }
}
/* Add overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.6); /* Dark overlay with 60% opacity */
    z-index: 0;
}

/* Position content above the overlay */
.hero-content, .hero-image {
    position: relative;
    z-index: 1;
}

/* Enhanced text contrast */
.hero-title, .hero-subtitle {
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Glow effect on title */
.hero-title span {
    text-shadow: 0 0 10px rgba(3, 3, 3, 0.7), 
                 0 0 20px rgba(46, 204, 113, 0.5);
}

/* Improved CTA button visibility */
.hero .cta-button {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Add subtle animation to background */
@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

.hero {
    animation: subtleZoom 20s infinite alternate ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile */
        text-align: center;
    }
    
    .hero::before {
        background: rgba(44, 62, 80, 0.7); /* Darker overlay for mobile */
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 80px;
        background-position: 60% center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Add this for a modern glass-morphism effect on the content */
.hero-content {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

/* Add a subtle border animation */
.hero-content {
    position: relative;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, 
                 linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    100% {
        transform: rotate(1turn);
    }
}
.hero-content {
    flex: 1;
    padding-right: 40px;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;

}



/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--gray-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
}

.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .hover-effect {
    opacity: 1;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.featured-products .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Default mobile-first approach - stacked layout */
.featured-products .products-grid {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products .product-card {
    width: 100%; /* Full width on mobile */
    margin-bottom: 0;
}

/* Desktop layout - horizontal */
@media (min-width: 992px) {
    .featured-products .products-grid {
        flex-direction: row; /* Horizontal layout */
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
    }
    
    .featured-products .product-card {
        flex: 0 0 calc(25% - 25px); /* 4 items per row with gap */
        max-width: calc(25% - 25px);
    }
}

/* Tablet layout - adjust if needed */
@media (min-width: 768px) and (max-width: 991px) {
    .featured-products .products-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .featured-products .product-card {
        flex: 0 0 calc(50% - 25px); /* 2 items per row */
        max-width: calc(50% - 25px);
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--accent-color);
    gap: 8px;
}

.view-all i {
    font-size: 12px;
    transition: var(--transition);
}
/* Products Grid Section - Enhanced */
.products-grid-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.category-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.category-description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-details {
    padding: 20px;
    text-align: left;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 10px;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.add-to-cart, .view-details {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart {
    background: var(--primary-color);
    color: white;
}

.add-to-cart:hover {
    background: var(--accent-color);
}

.view-details {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.view-details:hover {
    background: var(--primary-color);
    color: white;
}

/* Rating Styles */
.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700; /* Gold color for stars */
    margin-right: 5px;
}

.review-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.8rem;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .product-image-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .products-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart, .view-details {
        width: 100%;
    }
}


.product-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 15px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-card:hover .quick-view {
    bottom: 15px;
    opacity: 1;
}

.quick-view:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
    margin-left: 8px;
}

.product-actions {
    display: flex;
    justify-content: center;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-content p {
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

.newsletter-form button i {
    margin-left: 8px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ddd;
    color: #2c3e50;
}
.shop-class{
    margin-left: 60px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

/* Products Page */
.products-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--gray-color), var(--light-color));
}

.products-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.products-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Filter */
.products-filter {
    padding: 30px 0;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box {
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.search-box button {
    padding: 0 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--accent-color);
}

.filter-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--gray-color);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* Products Grid Section */
.products-grid-section {
    padding: 60px 0;
}

.category-title {
    font-size: 28px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-color);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--light-color);
    margin: 50px auto;
    max-width: 900px;
    width: 90%;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-product {
    display: flex;
    gap: 40px;
}

.modal-product-image {
    flex: 1;
}

.modal-product-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.modal-product-details {
    flex: 1;
}

.modal-product-details h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.modal-product-details .price {
    font-size: 28px;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .modal-product {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .featured-products .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
}

/* Add this to your existing style.css file */

/* Enhanced Base Styles */
:root {
    --animation-curve: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glow-effect: 0 0 15px rgba(46, 204, 113, 0.3);
    --premium-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Container with subtle glow */
.container {
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--primary-color), 
        transparent);
    opacity: 0;
    transition: opacity 0.6s var(--animation-curve);
}

.container:hover::before {
    opacity: 0.6;
}

/* Enhanced Buttons with glow effect */
.cta-button, .buy-now {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::after, .buy-now::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s var(--animation-curve);
}

.cta-button:hover::after, .buy-now:hover::after {
    opacity: 1;
}

/* Enhanced Header with subtle shine */
.main-header {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.95);
}

.logo {
    transition: transform 0.3s var(--animation-curve);
}

.logo:hover {
    transform: translateX(5px);
}

/* Enhanced Hero Section */
.hero-title {
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--animation-curve);
}

.hero:hover .hero-title::after {
    transform: scaleX(1);
}

/* Enhanced Category Cards */
.category-card {
    perspective: 1000px;
}

.category-card:hover .category-icon {
    transform: rotateY(180deg) scale(1.1);
}

.category-icon {
    transition: all 0.6s var(--animation-curve);
    backface-visibility: hidden;
}

/* Enhanced Product Cards */
.product-card {
    transform-style: preserve-3d;
    transition: all 0.5s var(--animation-curve);
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--premium-shadow);
}

.product-image {
    transform-style: preserve-3d;
}

.product-image img {
    transition: all 0.8s var(--animation-curve);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(0.5deg);
}

/* Enhanced Modal */
.modal-content {
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.95)
    );
}

/* Enhanced Footer */
.footer-section h3::after {
    transition: width 0.4s var(--animation-curve);
}

.footer-section:hover h3::after {
    width: 60px;
}

.social-links a {
    transition: all 0.3s var(--animation-curve), 
                box-shadow 0.3s var(--animation-curve);
}

.social-links a:hover {
    box-shadow: var(--glow-effect);
    transform: translateY(-5px) scale(1.1);
}

/* New Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Apply to elements that should float */
.floating {
    animation: float 4s var(--animation-curve) infinite;
}

/* Add to your hero image */
.hero-image {
    animation: float 6s var(--animation-curve) infinite;
}

/* Enhanced Input Fields */
input, select {
    transition: all 0.3s var(--animation-curve), 
                box-shadow 0.3s var(--animation-curve);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

input:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    border-color: var(--primary-color);
    outline: none;
}

/* Enhanced Badges */
.product-badge {
    transform: rotate(-5deg);
    transition: all 0.3s var(--animation-curve);
}

.product-card:hover .product-badge {
    transform: rotate(0) scale(1.1);
}

/* New Section Entrances */
@keyframes sectionEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-categories, 
.featured-products, 
.newsletter {
    animation: sectionEntrance 0.8s var(--animation-curve) forwards;
}

.featured-products {
    animation-delay: 0.1s;
}

.newsletter {
    animation-delay: 0.2s;
}

/* Enhanced Mobile Menu */
.mobile-menu {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Logo Highlight */
.logo-highlight {
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
}

/* Add subtle pulse animation to CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

/* Responsive adjustments for new effects */
@media (max-width: 768px) {
    .container::before {
        display: none;
    }
    
    .hero-image {
        animation: none;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
}

/* Base Styles */
.footer-bottom {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 25px 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.developer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.developer-text {
    font-size: 14px;
    white-space: nowrap;
}

.developer-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        justify-items: center;
        text-align: center;
        gap: 15px;
    }
    .shop-class{
        margin-left: 0px;
    }
    .developer {
        flex-direction: column;
        gap: 8px;
    }
    
    .developer-text {
        white-space: normal; /* Allow text wrapping */
        order: 2; /* Move text below logo */
    }
    
    .developer-logo {
        order: 1; /* Move logo above text */
    }
}

@media (max-width: 480px) {
    .footer-grid {
        padding: 0 15px;
    }

    
    .copyright, .developer-text {
        font-size: 12px;
    }
    
    .developer-logo {
        height: 32px;
        width: 32px;
    }
}
/* About Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                url('../images/about-bg.jpg') center/cover no-repeat;
    color: var(--light-color);
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.about-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: var(--transition);
}

.about-card:hover .about-icon {
    transform: rotateY(180deg);
}

.about-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.about-list {
    text-align: left;
    list-style: none;
}

.about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-list i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.team-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background: rgba(46, 204, 113, 0.9);
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--light-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.team-card h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-card p {
    color: var(--text-light);
    padding-bottom: 20px;
}

.location-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-content p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-content i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.location-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Simple phone cases style */
.simple-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.simple-case {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.simple-case .product-image {
    position: relative;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.simple-case .product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.buy-now-simple {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.simple-case:hover .buy-now-simple {
    opacity: 1;
}