:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --light-green: #e8f5e9;
    --dark-green: #1b5e20;
    --primary-lime: #82f029;
    --bright-lime: #a8ff3e;
    --black: #212121;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #9e9e9e;
    --dark-gray: #616161;
    --dark-bg: #1a1a1a;
    --jungle-dark: #0d1f0d;
    --jungle-medium: #1a3c1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--jungle-dark) 0%, var(--jungle-medium) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(168, 255, 62, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(130, 240, 41, 0.15) 0%, transparent 50%);
    background-size: auto, auto;
    opacity: 0.4;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23a8ff3e" stroke-width="1.5" stroke-dasharray="5,5"/></svg>');
    background-size: 150px;
    opacity: 0.3;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-lime);
    font-weight: 500;
}

.hero-highlight-single {
    margin-bottom: 25px;
}

.unlimited-single {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bright-lime);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid rgba(168, 255, 62, 0.4);
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(168, 255, 62, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--light-green);
    max-width: 700px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-lime), var(--secondary-green));
    color: var(--dark-green);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(130, 240, 41, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(130, 240, 41, 0.6);
    text-decoration: none;
    color: var(--dark-green);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(130, 240, 41, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(130, 240, 41, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(130, 240, 41, 0);
    }
}

.cta-note {
    font-size: 0.9rem;
    color: var(--light-green);
    opacity: 0.8;
}

.preview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 120px;
    justify-content: center;
}

.preview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.preview-card i {
    font-size: 1.8rem;
    color: var(--primary-lime);
}

.preview-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.preview-card.tracking {
    border-top: 4px solid #4CAF50;
}

.preview-card.ai {
    border-top: 4px solid #2196F3;
}

.preview-card.marketplace {
    border-top: 4px solid #FF9800;
}

.preview-card.lineage {
    border-top: 4px solid #9C27B0;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-green), var(--white));
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 60px 0 80px;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid var(--light-green);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--white), var(--light-green));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: """;
    font-size: 4rem;
    color: var(--light-green);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.author-info h4 {
    color: var(--dark-green);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Pricing CTA Section */
.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--jungle-dark) 0%, var(--jungle-medium) 100%);
    color: var(--white);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.pricing-header p {
    font-size: 1.3rem;
    color: var(--primary-lime);
    font-weight: 500;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.feature-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-lime);
    border-bottom: 2px solid rgba(130, 240, 41, 0.3);
    padding-bottom: 10px;
}

.feature-column ul {
    list-style: none;
}

.feature-column li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--light-green);
}

.feature-column li i {
    color: var(--primary-lime);
    margin-top: 3px;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.price-tag-simple {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-tag-simple .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-lime);
    background: none;
    border: none;
    padding: 0;
}

.price-tag-simple .period {
    font-size: 1.2rem;
    color: var(--light-green);
}

.cta-button-large {
    padding: 18px 50px;
    font-size: 1.3rem;
}

/* Centered Hero Section */
.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-text-centered {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-centered h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}

.hero-text-centered .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-lime);
    font-weight: 500;
    max-width: 600px;
}

.hero-text-centered .hero-highlight-single {
    margin-bottom: 25px;
}

.hero-text-centered .hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--light-green);
    max-width: 700px;
}

.hero-text-centered .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-visual-centered {
    width: 100%;
    display: flex;
    justify-content: center;
}

.platform-preview-centered {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-centered {
        gap: 40px;
    }
    
    .hero-text-centered h1 {
        font-size: 2.8rem;
    }
    
    .platform-preview-centered {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-text-centered h1 {
        font-size: 2.4rem;
    }
    
    .hero-text-centered .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .unlimited-single {
        font-size: 1.8rem;
        padding: 12px 20px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .platform-preview-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 350px;
    }
    
    .preview-card {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .preview-card i {
        font-size: 1.5rem;
    }
    
    .preview-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-text-centered h1 {
        font-size: 2rem;
    }
    
    .unlimited-single {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .platform-preview-centered {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
    }
    
    .value-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .preview-card {
        padding: 12px 8px;
        min-height: 90px;
    }
    
    .preview-card i {
        font-size: 1.3rem;
    }
    
    .preview-card span {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .platform-preview-centered {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
    }
    
    .preview-card {
        padding: 10px 5px;
        min-height: 80px;
    }
    
    .preview-card i {
        font-size: 1.2rem;
    }
    
    .preview-card span {
        font-size: 0.7rem;
    }
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    z-index: 10002;
    padding: 5px;
    position: relative;
}

.mobile-only {
    display: none;
}

/* Footer Styles */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Button Pulse Animation */
.cta-button-pulse {
    animation: pulse 2s infinite;
    position: relative;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}











/* Breeder info - FIXED VERSION */
.breeder-info {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
    width: 100%; /* Add this */
}

.breeder-name {
    color: var(--dark-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px; /* Increase margin to create more space */
    font-weight: 600;
    width: 100%; /* Add this */
}

.breeder-country {
    display: block; /* Ensure it's block level */
    margin-top: 4px;
    width: 100%; /* Add this */
}

.country-code {
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-weight: 500;
    background: var(--light-gray);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Add this to prevent any hover interference */
.breeder-country:hover .country-code {
    transform: none; /* Remove any hover transforms */
    background: var(--light-gray); /* Keep same background */
}

.country-code:hover {
    transform: none; /* Remove any hover transforms */
}







/* Marketplace Card Styles */
.gecko-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gecko-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gecko-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gecko-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--gray);
    font-size: 2rem;
}

.gecko-image .for-sale-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #00c10a, #007d06);
    color: white;
    padding: 0px 6px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 90;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.gecko-image .sold-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #f44336, #c62828);
    color: white;
    padding: 0px 6px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 90;
    box-shadow: 0 3px 10px rgba(244, 67, 54, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.gecko-image .public-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #FF9800, #EF6C00);
    color: white;
    padding: 0px 6px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 90;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.gecko-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure full width */
}

/* Ensure all children in gecko-info take full width */
.gecko-info > * {
    width: 100%;
}










.animal-title-display {
    color: #0f2e1b !important;
    margin-bottom: 4px;
    font-size: 0.7rem !important;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: -0.1px;
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f2e1b, #145c2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animal-price-display {
    color: #22c55e !important;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 10px 0 5px 0; /* Adjust margin to accommodate tracking ID below */
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #22c55e, #10b981, #22c55e, #84cc16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: shimmer 2.5s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
    /* Remove flex properties since tracking ID is now separate */
    display: block;
}

.animal-tracking-display {
    color: #007b06 !important; /* Force color with !important */
    font-weight: 700;
    font-size: 0.55rem;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    display: block;
    text-align: left;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
    margin-bottom: 8px;
    /* Ensure no text transparency effects */
    -webkit-text-fill-color: #007b06 !important;
    text-fill-color: #007b06 !important;
    /* Reset any background clip */
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}








.insect-quantity {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gecko-weight {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.gecko-price .original-price {
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-weight: normal;
    margin-top: 2px;
}








/* More aggressive fix for breeder info layout */
.breeder-info {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    clear: both !important;
}

.breeder-name {
    color: var(--dark-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: -1px !important;
    font-weight: 600;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.breeder-country {
    display: block !important;
    margin-top: -1px !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}







.gecko-actions {
    padding: 0 15px 10px;
    margin-top: 1px !important;
}

.gecko-actions a {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(135deg, var(--primary-lime), var(--secondary-green)) !important;
    color: white;
    border: none;
    border-radius: 14px !important;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    letter-spacing: 0.3px;
}

.gecko-actions a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    text-decoration: none;
    color: white;
}

/* Featured grid layouts */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}





.gecko-image .wishlist-counter-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(255, 255, 255, 0.98);
    color: #666;
    border-radius: 15px;
    padding: 3px 6px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 102, 102, 0.3);
    min-width: 40px;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
}

.gecko-image .wishlist-counter-badge.wishlisted {
    color: #e74c3c;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.gecko-image .wishlist-counter-badge:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transform: scale(1.08);
}

.gecko-image .wishlist-counter-badge.wishlisted:hover {
    background: #fff5f5;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.gecko-image .wishlist-counter-badge i {
    font-size: 12px;
}

.gecko-image .wishlist-counter-badge span {
    font-size: 12px;
    font-weight: 700;
}





/* Sex Badge Styles */
.sex-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(255, 255, 255, 0.95);
    color: white;
    padding: 3px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sex-badge.sex-male {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.sex-badge.sex-female {
    background: linear-gradient(135deg, #e84393, #fd79a8);
    color: white;
}

.sex-badge.sex-unsexed {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.sex-badge i {
    font-size: 0.6rem;
}






/* Seller Initials Styles */
.seller-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-lime));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.seller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-image .seller-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seller-image .fa-user {
    font-size: 2rem;
    color: var(--white);
}

/* Seller Card Styles */
.seller-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seller-username {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.seller-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    width: 100%;
}

.seller-stat, .seller-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.seller-stat i, .seller-location i {
    color: var(--primary-green);
}

.seller-meta {
    margin-top: auto;
}

.member-since {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

.no-sellers {
    text-align: center;
    padding: 40px 20px;
    color: var(--dark-gray);
}

.no-sellers i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--gray);
}

