/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* --- NEW COLOR SCHEME --- */
    
    /* Logo Blue: #114c9c */
    --primary-color: #114c9c;       
    --primary-dark: #0a2e5e;        /* Darker shade of Blue */
    --primary-light: #4b7bc4;       /* Lighter shade of Blue */
    
    /* Logo Blue (Darker for Contrast): Used for Headings/Footer */
    --secondary-color: #08254f;     
    
    /* Logo Orange: #f98925 - Used for Buttons/Highlights */
    --accent-color: #f98925;        
    
    /* Logo Yellow: #ffe100 - Used for Stars/Badges */
    --highlight-yellow: #ffe100;    

    /* Gradients (Blue to Darker Blue) */
    --gradient-start: #114c9c;
    --gradient-end: #051a38;

    /* Base Colors */
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E0E0E0;
    --dark-gray: #4A4A4A;
    
    /* Functional Colors */
    --success-color: #4CAF50;
    --warning-color: #f98925; 
    --error-color: #F44336;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color); /* Changed to Orange */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Announcement Banner */
.announcement-banner {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin: 0 10px;
    font-size: 14px;
}

.separator {
    margin: 0 5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 70px;
    margin-right: 10px;
}

.header-logo-img {
    height: 50x; /* You can adjust this value (e.g., 55px, 60px) */
    width: auto;  /* This maintains the image's aspect ratio */
}

.logo-text {
    font-size: 24px;
    color: var(--primary-color);
}

.logo-text strong {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
}

.search-box input {
    border: none;
    background: transparent;
    margin-left: 8px;
    outline: none;
    width: 150px;
}

.icon-link {
    font-size: 18px;
    color: var(--secondary-color);
}

.icon-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background-color: #f8f9fa;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.category-card:hover img {
    transform: scale(1.05);
}
.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 40px 20px 20px;
    text-align: center;
}
.category-card h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: var(--white);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--accent-color); /* Orange */
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #d67015; /* Darker Orange */
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    max-height: 70vh;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Decorative tapes */
.tape {
    position: absolute;
    height: 30px;
    background: url('tape-pattern.png') repeat-x;
    transform-origin: center;
    z-index: 1;
    opacity: 0.7;
}

.tape-1 {
    width: 120%;
    top: 20%;
    left: -10%;
    transform: rotate(-10deg);
}

.tape-2 {
    width: 120%;
    top: 40%;
    right: -10%;
    transform: rotate(15deg);
}

.tape-3 {
    width: 120%;
    bottom: 30%;
    left: -10%;
    transform: rotate(-5deg);
}

.tape-4 {
    width: 120%;
    bottom: 15%;
    right: -10%;
    transform: rotate(8deg);
}

.hero-navigation {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: 50px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    border-radius: 10px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-link:hover {
    color: var(--primary-dark);
}

.feature-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15%;
    width: 30%;
    height: 2px;
    background-color: var(--medium-gray);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 300px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

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

.testimonial-content i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-color);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(42, 157, 143, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--white);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

/* Footer - Light Theme Experiment */
.footer {
    background-color: #f8f9fa; /* Very light gray */
    color: var(--text-color);  /* Dark grey text */
    padding: 80px 0 20px;
    border-top: 4px solid var(--primary-color); /* Blue top border for separation */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 70px;
    margin-right: 10px;
    /* No background needed now! */
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary-color); /* Dark Navy Heading */
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color); /* Orange underline */
}

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

.footer-col ul li a {
    color: var(--text-light);
    transition: all 0.3s;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--primary-color); /* Blue on hover */
    padding-left: 5px; /* Slight movement effect */
}

/* Social Links - Now Blue Circles */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color); /* Blue Background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white); /* White Icon */
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background-color: var(--accent-color); /* Orange on hover */
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info li i {
    color: var(--accent-color); /* Orange Icons */
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0; /* Light gray divider */
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .features-grid, .steps, .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .features-grid, .steps, .stats .container, .footer-grid, .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}


/* Image-Based Product Search */
.product-search {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .product-search .section-header h2 {
    color: var(--secondary-color);
  }
  
  .product-search .section-header p {
    color: var(--text-light);
  }
  
  .product-search .search-by-image {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .product-search .search-by-image input[type="file"] {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    background-color: var(--light-gray);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-light);
    transition: border-color 0.3s, background-color 0.3s;
  }
  
  .product-search .search-by-image input[type="file"]:hover {
    border-color: var(--primary-color);
    background-color: var(--white);
  }
  
  .product-search .search-by-image button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .product-search .search-by-image button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .product-search .search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  /* Placeholder card styling for search results */
  .product-search .search-results .result-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .product-search .search-results .result-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  .product-search .search-results .result-card h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
  }
  
  .product-search .search-results .result-card p {
    font-size: 14px;
    color: var(--text-light);
  }


  .view-all-products-container {
text-align: center;
margin-top: 50px; 
}


/* Collections Section Styles */
.collections-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.collection-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.collection-image {
    width: 100%;
    height: 100%;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.collection-text h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-count {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.btn-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.collection-card:hover .btn-arrow {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .collection-card {
        height: 220px;
    }
    .btn-arrow {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Winning Products Section */
.winning-products {
    padding: 100px 0;
    background-color: var(--white);
}

.winning-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.winning-product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.winning-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image-wrapper {
    position: relative;
    height: 260px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.winning-product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Trending Badge */
.badge-trending {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FF5252; /* Hot red color */
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hover Overlay */
.product-overlay-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 70, 83, 0.4); /* Secondary color with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.winning-product-card:hover .product-overlay-actions {
    opacity: 1;
}

.btn-quick-view {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.winning-product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Product Details */
.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category-small {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-details h4 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
    flex-grow: 1;
}

.product-details h4 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.product-details h4 a:hover {
    color: var(--primary-color);
}

/* Price & Profit Row */
.product-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-bottom-row .price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
}

.product-bottom-row .potential-profit {
    font-size: 11px;
    color: var(--success-color);
    background: rgba(76, 175, 80, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* View All Button Container */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.btn-outline-primary {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .winning-products {
        padding: 60px 0;
    }
    .product-image-wrapper {
        height: 220px;
    }
    .product-overlay-actions {
        display: none; /* Hide hover effects on mobile */
    }
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px);
    color: var(--primary-color);
}

/* Store Integration Section */
.store-integration {
    padding: 80px 0;
    background-color: var(--secondary-color); /* Matches your theme (Dark Teal) */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Add a subtle texture or gradient overlay if desired */
.store-integration::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.integration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Text Styling */
.integration-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.highlight-text {
    color: var(--accent-color); /* Gold color */
}

.integration-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    opacity: 0.9;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.integration-features li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.integration-features li i {
    color: var(--accent-color); /* Gold Checkmarks */
    font-size: 22px;
}

/* Buttons */
.integration-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background-color: var(--white);
    color: var(--secondary-color); /* Dark Text */
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-gold:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-outline-light-custom {
    background-color: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    border-color: var(--white);
    background-color: rgba(255,255,255,0.1);
}

/* Updated Grid Styling for Integration Logos */
.integration-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns fixed */
    gap: 20px;
    align-self: center;
    width: 100%;
    max-width: 500px; /* Constrain width to keep cards nice */
    margin: 0 auto; /* Center in its grid cell */
}

.logo-card {
    background-color: var(--white);
    border-radius: 12px;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    width: 100%; /* Fills the grid column */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden; /* Prevents overflow */
}

.logo-card i {
    font-size: 42px; /* Fixed size for icons */
    margin-bottom: 12px;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-card span {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.2;
}

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

.logo-card:hover i {
    color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .integration-logos-grid {
        grid-template-columns: repeat(3, 1fr); /* Keep row of 3 even on mobile */
        gap: 10px;
    }
    
    .logo-card {
        border-radius: 8px;
        padding: 10px;
    }

    .logo-card i {
        font-size: 28px; /* Smaller icons for mobile */
        margin-bottom: 8px;
    }

    .logo-card span {
        font-size: 11px; /* Smaller text for mobile */
    }
}

/* Process Flow Section */
.process-flow {
    padding: 100px 0;
    background-color: var(--white);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 50px;
}

.process-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 280px; /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.step-badge {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    align-self: center; /* Center horizontally */
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.process-icon {
    font-size: 40px;
    color: var(--primary-color);
    background: rgba(42, 157, 143, 0.1); /* Primary color light opacity */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Center the circle */
}

/* Connector Arrows */
.process-connector {
    color: var(--medium-gray);
    font-size: 20px;
    flex-shrink: 0;
}

/* CTA Button Area */
.process-cta {
    text-align: center;
}

.btn-outline-secondary-custom {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-secondary-custom:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-grid {
        flex-direction: column;
        gap: 30px;
    }

    .process-card {
        width: 100%;
        height: auto;
        flex-direction: row; /* Horizontal layout on mobile */
        align-items: center;
        text-align: left;
        padding: 20px;
    }

    .process-card h3 {
        margin-bottom: 0;
        padding: 0 15px;
        flex: 1;
    }

    .step-badge {
        margin-bottom: 0;
        margin-right: 15px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0; /* Reset auto margin */
    }

    .process-connector {
        transform: rotate(90deg); /* Point down on mobile */
        display: none; /* Hide arrows on mobile for cleaner look, optional */
    }
}