/* Modern Software Marketplace Styles - Professional Redesign */

/* ============================================
   GLOBAL STYLES
   ============================================ */
:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-info: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.modern-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

/* Topbar - Trending Section */
.modern-topbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3px 0;
    font-size: 11px;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modern-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.modern-topbar > .container-fluid {
    position: relative;
    z-index: 1;
    padding-left: 40px;
    padding-right: 40px;
}

.topbar-trending {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
}

.trending-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(220, 53, 69, 0.95);
    padding: 2px 6px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.4);
    flex-shrink: 0;
}

.trending-label i {
    color: #ffd700;
    font-size: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.trending-text {
    color: #ffffff;
}

.trending-slider-wrapper {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.trending-slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.trending-nav-arrows {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.trending-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 8px;
    padding: 0;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.trending-nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    color: #ffffff;
}

.trending-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 6px;
}

.trending-link {
    color: rgba(255,255,255,0.95) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 11px;
    font-weight: 500;
    padding: 0;
    display: inline-block;
    line-height: 1.3;
}

.trending-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    transform: translateX(2px);
}

.topbar-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge-item {
    font-size: 9px;
    opacity: 0.95;
    background: rgba(255,255,255,0.15);
    padding: 3px 8px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.badge-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.badge-item i {
    margin-right: 3px;
    font-size: 9px;
}

/* Navbar */
.modern-menubar {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 100;
    width: 100%;
    margin: 0;
}

.modern-menubar .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.modern-menubar.navbar-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
    border-top: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    animation: slideDown 0.3s ease;
}

.modern-menubar.navbar-sticky .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Merged Hero & Banner Section */
.hero-banner-merged {
    padding: 50px 0 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: relative;
}

.hero-banner-merged::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.hero-banner-merged .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.hero-content-merged {
    padding: 30px 0;
}

.hero-title-merged {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-subtitle-merged {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons-merged {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn-merged {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-btn-primary-merged {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.hero-btn-primary-merged:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
    color: #ffffff;
    text-decoration: none;
}

.hero-btn-outline-merged {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.hero-btn-outline-merged:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    text-decoration: none;
}

.hero-btn-info-merged {
    background: var(--gradient-info);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.35);
}

.hero-btn-info-merged:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.45);
    color: #ffffff;
    text-decoration: none;
}

.hero-btn-merged i {
    font-size: 18px;
}

/* Banner Styles */
.header-banner-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    height: 400px;
    min-height: 400px;
    width: 100%;
}

.header-banner-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.banner-slider,
.image_slider,
.trending-slider.image_slider {
    height: 400px !important;
    min-height: 400px !important;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.banner-img,
.modern-ad-img {
    height: 400px !important;
    min-height: 400px !important;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.banner-link:hover .banner-img {
    transform: scale(1.05);
}

.header-banner-placeholder {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
    height: 400px !important;
    min-height: 400px !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-placeholder-content h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.banner-placeholder-content p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Navbar Right Bar */
.header-menu-rightbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    overflow: visible;
}

/* Navbar Auth Buttons */
.header-auth-navbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.navbar-login-btn {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.navbar-login-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.navbar-signup-btn {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.navbar-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.navbar-dashboard-btn {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.navbar-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.navbar-logout-btn {
    background: #ffffff;
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
}

.navbar-logout-btn:hover {
    background: var(--danger-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    text-decoration: none;
}

.navbar-upload-btn {
    background: var(--gradient-info);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.navbar-upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(23, 162, 184, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.navbar-auth-btn i {
    font-size: 14px;
}

/* Search Bar */
.search-input {
    border-radius: 25px 0 0 25px;
    border-right: none;
    font-size: 14px;
    padding: 10px 20px;
    height: 42px;
    line-height: 22px;
    border: 2px solid var(--border-color);
    vertical-align: middle;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.search-btn {
    border-radius: 0 25px 25px 0;
    border-left: none;
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    padding: 0;
    width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    border-left: none;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.search-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Auth Links */
.header-auth-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.auth-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.modern-btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.modern-btn-outline {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modern-btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-banner-merged .container-fluid,
    .modern-topbar .container-fluid,
    .modern-menubar .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .hero-title-merged {
        font-size: 36px;
    }
    
    .hero-subtitle-merged {
        font-size: 17px;
        max-width: 100%;
    }
    
    .hero-buttons-merged {
        justify-content: flex-start;
    }
    
    .hero-btn-merged {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .header-banner-wrapper {
        height: 350px;
        min-height: 350px;
    }
    
    .banner-slider,
    .image_slider,
    .trending-slider.image_slider {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .banner-img,
    .modern-ad-img {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .header-banner-placeholder {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .hero-banner-merged .container-fluid,
    .modern-topbar .container-fluid,
    .modern-menubar .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .header-menu-rightbar {
        justify-content: flex-end;
    }
    
    .header-auth-navbar {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .navbar-auth-btn {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .hero-banner-merged {
        padding: 30px 0 25px 0;
    }
    
    .hero-content-merged {
        padding: 20px 0;
        text-align: center;
    }
    
    .hero-title-merged {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle-merged {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-buttons-merged {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .hero-btn-merged {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .header-banner-wrapper {
        height: 280px;
        min-height: 280px;
        margin-top: 20px;
    }
    
    .banner-slider,
    .image_slider,
    .trending-slider.image_slider {
        height: 280px !important;
        min-height: 280px !important;
    }
    
    .banner-img,
    .modern-ad-img {
        height: 280px !important;
        min-height: 280px !important;
    }
    
    .header-banner-placeholder {
        height: 280px !important;
        min-height: 280px !important;
        padding: 40px 20px;
    }
    
    .banner-placeholder-content h4 {
        font-size: 22px;
    }
    
    .banner-placeholder-content p {
        font-size: 14px;
    }
    
    .hero-banner-merged .container-fluid,
    .modern-topbar .container-fluid,
    .modern-menubar .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modern-menubar.navbar-sticky .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-auth-navbar {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 15px;
        margin-left: 0;
    }
    
    .navbar-auth-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .trending-label {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .badge-item {
        font-size: 10px;
        padding: 5px 10px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Hide default slick arrows for trending slider */
.topbar-trending .trending-slider .slick-arrow,
.topbar-trending .trending-slider .slick-prev,
.topbar-trending .trending-slider .slick-next {
    display: none !important;
}

/* Ensure custom arrows are visible */
.trending-nav-arrows {
    display: flex !important;
}

/* ============================================
   LATEST SOFTWARE SECTION
   ============================================ */
.latest-software-section {
    padding: 40px 0 30px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.latest-software-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.section-title-modern {
    flex: 1;
    min-width: 300px;
}

.section-title-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.section-title-modern p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

.section-search-wrapper {
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 400px;
}

.software-search-form {
    width: 100%;
}

.software-search-input-group {
    display: flex;
    gap: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.software-search-input-group:focus-within {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.software-search-input {
    flex: 1;
    padding: 10px 18px;
    font-size: 14px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-color);
    font-weight: 400;
}

.software-search-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.software-search-icon {
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: transparent;
    pointer-events: none;
}

.software-search-icon i {
    font-size: 16px;
}

.software-search-btn {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.25);
}

.software-search-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateX(-2px);
}

.software-search-btn i {
    font-size: 16px;
}

/* Software Cards */
.software-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.software-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.software-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.software-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    transition: transform 0.5s ease;
}

.software-card:hover .software-card-image img {
    transform: scale(1.1);
}

.software-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.software-card-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.software-card-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.software-card-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.software-card-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.software-card-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.price-original {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

/* Fade in animation */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Latest Software Section */
@media (max-width: 1200px) {
    .latest-software-section .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .latest-software-section {
        padding: 35px 0 25px 0;
    }
    
    .section-header-wrapper {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 35px;
    }
    
    .section-title-modern {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .section-title-modern h2 {
        font-size: 28px;
    }
    
    .section-title-modern p {
        font-size: 14px;
    }
    
    .section-search-wrapper {
        min-width: 100%;
        max-width: 100%;
    }
    
    .latest-software-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .latest-software-section {
        padding: 30px 0 20px 0;
    }
    
    .section-header-wrapper {
        margin-bottom: 30px;
    }
    
    .section-title-modern h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .section-title-modern p {
        font-size: 13px;
    }
    
    .section-search-wrapper {
        min-width: 100%;
    }
    
    .software-search-input-group {
        border-radius: 10px;
    }
    
    .software-search-input {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .software-search-icon {
        padding: 10px 16px;
    }
    
    .software-search-btn {
        padding: 10px 20px;
        border-radius: 0 0 10px 10px;
        justify-content: center;
        font-size: 14px;
    }
    
    .software-card-image {
        height: 180px;
    }
    
    .software-card-content {
        padding: 18px;
    }
    
    .software-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .price-current {
        font-size: 18px;
    }
    
    .price-original {
        font-size: 14px;
    }
    
    .latest-software-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Mobile Software List Layout - Image Left, Text Right */
    #softwareCardsContainer .row,
    .page-content-section > .container-fluid > .row:last-child {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
    }
    
    #softwareCardsContainer .col-lg-4,
    #softwareCardsContainer .col-md-6,
    .page-content-section .col-lg-4,
    .page-content-section .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }
    
    #softwareCardsContainer .col-lg-4:not(:last-child),
    #softwareCardsContainer .col-md-6:not(:last-child),
    .page-content-section .col-lg-4:not(:last-child),
    .page-content-section .col-md-6:not(:last-child) {
        border-bottom: 1px dashed #d0d0d0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    #softwareCardsContainer > a,
    .page-content-section > .container-fluid > .row > a {
        text-decoration: none;
        color: inherit;
        display: block;
    }
    
    #softwareCardsContainer .software-card,
    .page-content-section .software-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: transparent;
        height: auto;
    }
    
    #softwareCardsContainer .software-card:hover,
    .page-content-section .software-card:hover {
        transform: none;
        box-shadow: none;
        border: none;
    }
    
    #softwareCardsContainer .software-card-image,
    .page-content-section .software-card-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    #softwareCardsContainer .software-card-image img,
    .page-content-section .software-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    #softwareCardsContainer .software-card-image:hover img,
    .page-content-section .software-card-image:hover img {
        transform: none;
    }
    
    #softwareCardsContainer .software-card-badge,
    .page-content-section .software-card-badge {
        display: none;
    }
    
    #softwareCardsContainer .software-card-content,
    .page-content-section .software-card-content {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
    }
    
    #softwareCardsContainer .software-card-title,
    .page-content-section .software-card-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        margin: 0 0 8px 0;
        color: #2d3748;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    #softwareCardsContainer .software-card-title a,
    .page-content-section .software-card-title a {
        color: #2d3748;
        text-decoration: none;
    }
    
    #softwareCardsContainer .software-card-title a:hover,
    .page-content-section .software-card-title a:hover {
        color: var(--primary-color);
    }
    
    #softwareCardsContainer .software-card-price,
    .page-content-section .software-card-price {
        margin-top: auto;
        gap: 8px;
    }
    
    #softwareCardsContainer .price-current,
    .page-content-section .price-current {
        font-size: 16px;
        font-weight: 700;
    }
    
    #softwareCardsContainer .price-original,
    .page-content-section .price-original {
        font-size: 13px;
    }
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: 30px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.categories-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.categories-section .section-title-modern {
    margin-bottom: 45px;
    text-align: left;
}

.categories-section .section-title-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.categories-section .section-title-modern p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.category-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-overlay-title {
    display: none;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card:hover .category-card-overlay {
    opacity: 1;
}

.category-card-content {
    padding: 13px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.category-card-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-card-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(3px);
}

.category-card-title a i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-card-title a i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

/* Large Category Card Styles */
.category-large-card {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    cursor: pointer;
}

.category-large-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.category-large-card a {
    text-decoration: none;
    display: block;
    color: inherit;
}

.category-large-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-large-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-large-card:hover .category-large-banner img {
    transform: scale(1.05);
}

.category-large-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.95) 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-large-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.category-large-label {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.category-large-label i {
    font-size: 24px;
    color: var(--primary-color);
}

.category-large-label span {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Categories Section Responsive */
@media (max-width: 1200px) {
    .categories-section .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .categories-section {
        padding: 25px 0 70px 0;
    }
    
    .categories-section .section-title-modern {
        margin-bottom: 40px;
    }
    
    .categories-section .section-title-modern h2 {
        font-size: 28px;
    }
    
    .categories-section .section-title-modern p {
        font-size: 14px;
    }
    
    .category-card-image {
        height: 180px;
    }
    
    .category-card-content {
        padding: 18px;
    }
    
    .category-card-title {
        font-size: 16px;
    }
    
    .category-large-banner {
        height: 350px;
    }
    
    .category-large-title {
        font-size: 24px;
    }
    
    .category-large-label {
        padding: 18px 25px;
    }
    
    .category-large-label span {
        font-size: 18px;
    }
    
    .categories-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .categories-section {
        padding: 20px 0 60px 0;
    }
    
    .categories-section .section-title-modern {
        margin-bottom: 35px;
    }
    
    .categories-section .section-title-modern h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .categories-section .section-title-modern p {
        font-size: 13px;
    }
    
    /* Transform category cards to large banner style on mobile */
    #categoryCardsContainer .col-sm-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 25px;
    }
    
    .category-card {
        border-radius: 16px;
        overflow: hidden;
    }
    
    .category-card-image {
        height: 250px;
        position: relative;
    }
    
    .category-card-image img {
        object-fit: fit;
    }
    
    .category-card:hover .category-card-image img {
        transform: none;
    }
    
    .category-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        /* background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.95) 100%); */
        padding: 20px 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }
    
    .category-card:hover .category-card-overlay {
        opacity: 1;
    }
    
    .category-card-overlay-title {
        display: block;
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .category-card-content {
        padding: 16px 20px;
        border-top: 1px solid var(--border-color);
        background: #ffffff;
    }
    
    .category-card-title {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .category-card-title i {
        font-size: 20px;
        color: var(--primary-color);
    }
    
    .categories-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   PAGE CONTENT SECTIONS (About, Contact, Blog, etc.)
   ============================================ */
.page-content-section {
    padding: 50px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

.page-content-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.about-author-area {
    width: 100%;
}

.about-author-content {
    max-width: 100%;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: var(--text-muted);
}

/* Page Section Titles */
.page-content-section .section-title-modern {
    margin-bottom: 40px;
}

.page-content-section .section-title-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.page-content-section .section-title-modern p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

/* Contact Section */
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.contact-info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card p a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form-section {
    padding: 0 0 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.contact-form-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.contact-form-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-form-modern h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form-modern .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-form-modern .form-control {
    padding: 12px 18px;
    font-size: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-modern .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.btn-submit {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.btn-submit i {
    font-size: 16px;
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.blog-card-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
}

.blog-card-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Page Content Responsive */
@media (max-width: 1200px) {
    .page-content-section .container-fluid,
    .contact-form-section .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .page-content-section {
        padding: 40px 0 70px 0;
    }
    
    .contact-form-section {
        padding: 0 0 70px 0;
    }
    
    .page-content-section .section-title-modern h2 {
        font-size: 28px;
    }
    
    .page-content-section .section-title-modern p {
        font-size: 14px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-card i {
        font-size: 35px;
    }
    
    .contact-form-modern {
        padding: 30px;
    }
    
    .contact-form-modern h3 {
        font-size: 22px;
    }
    
    .page-content-section .container-fluid,
    .contact-form-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .page-content-section {
        padding: 30px 0 60px 0;
    }
    
    .contact-form-section {
        padding: 0 0 60px 0;
    }
    
    .page-content-section .section-title-modern {
        margin-bottom: 30px;
    }
    
    .page-content-section .section-title-modern h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .page-content-section .section-title-modern p {
        font-size: 13px;
    }
    
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .contact-info-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-info-card i {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .contact-info-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .contact-form-modern {
        padding: 25px 20px;
    }
    
    .contact-form-modern h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
    
    .page-content-section .container-fluid,
    .contact-form-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.page-content-section {
    padding: 20px 0 40px 0;
    background: #ffffff;
}

.page-content-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--text-muted);
    margin: 0 10px;
    font-size: 11px;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a i {
    font-size: 13px;
}

.breadcrumb-item.active {
    color: var(--dark-color);
    font-weight: 600;
}

.breadcrumb-item.active a {
    color: var(--dark-color);
    pointer-events: none;
}

.product-detail-main {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
}

.product-detail-header {
    margin-bottom: 20px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
}

.product-category-badge i {
    font-size: 12px;
}

.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

.product-detail-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-detail-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-detail-image-wrapper:hover .product-detail-main-image {
    transform: scale(1.02);
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: block;
}

/* Price Section */
.product-detail-price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.product-price-display {
    margin-bottom: 20px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.product-price-original {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.product-price-discount {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
}

.product-savings {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
    margin: 0;
}

.product-savings i {
    margin-right: 5px;
    font-size: 13px;
}

.buy-now-btn-modern {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.buy-now-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
    color: #ffffff;
}

.buy-now-btn-modern i {
    font-size: 16px;
}

/* Affiliate Section */
.affiliate-section {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.affiliate-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.affiliate-title i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 13px;
}

.affiliate-copy-btn,
.affiliate-join-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-info);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(23, 162, 184, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    margin-bottom: 10px;
}

.affiliate-copy-btn:hover,
.affiliate-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(23, 162, 184, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.affiliate-feedback {
    display: block;
    color: var(--success-color);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.affiliate-login-text {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.affiliate-login-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.affiliate-login-text a:hover {
    text-decoration: underline;
}

/* Author Card */
.product-author-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
}

.author-avatar i {
    font-size: 22px;
    color: #ffffff;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.author-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.author-meta span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-meta i {
    color: var(--primary-color);
    font-size: 12px;
}

/* Description Section */
.product-description-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.product-short-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 400;
}

.product-full-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.product-full-description p {
    margin-bottom: 15px;
}

.product-full-description h1,
.product-full-description h2,
.product-full-description h3,
.product-full-description h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
}

.product-full-description ul,
.product-full-description ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.product-full-description li {
    margin-bottom: 6px;
}

.product-tags {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 25px;
    font-size: 14px;
}

.product-tags strong {
    color: var(--dark-color);
    margin-right: 8px;
}

.product-tags strong i {
    color: var(--primary-color);
    margin-right: 5px;
}

.product-tags span {
    color: var(--text-muted);
}

/* Sidebar */
.product-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-title i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.sidebar-category-item:hover {
    transform: translateX(4px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
    text-decoration: none;
}

.sidebar-category-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sidebar-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-category-item:hover .sidebar-category-image img {
    transform: scale(1.1);
}

.sidebar-category-content {
    flex: 1;
}

.sidebar-category-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s ease;
}

.sidebar-category-item:hover .sidebar-category-content h5 {
    color: var(--primary-color);
}

.sidebar-category-arrow {
    color: var(--text-muted);
    font-size: 12px;
    transition: all 0.3s ease;
}

.sidebar-category-item:hover .sidebar-category-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Related Software Section */
.related-software-section {
    padding: 40px 0 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.related-software-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.related-software-section .section-title-modern {
    margin-bottom: 35px;
    text-align: center;
}

.related-software-section .section-title-modern h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.related-software-section .section-title-modern p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

/* Product Detail Responsive */
@media (max-width: 1200px) {
    .page-content-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .related-software-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .page-content-section {
        padding: 18px 0 35px 0;
    }
    
    .product-detail-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .product-detail-price-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .product-price-current {
        font-size: 24px;
    }
    
    .product-price-original {
        font-size: 16px;
    }
    
    .product-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .related-software-section {
        padding: 35px 0 50px 0;
    }
    
    .related-software-section .section-title-modern h2 {
        font-size: 24px;
    }
    
    .page-content-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .related-software-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .page-content-section {
        padding: 15px 0 30px 0;
    }
    
    .breadcrumb {
        margin-bottom: 15px;
    }
    
    .breadcrumb-item {
        font-size: 12px;
    }
    
    .product-detail-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .product-detail-image-wrapper {
        margin-bottom: 20px;
    }
    
    .product-detail-main-image {
        max-height: 300px;
    }
    
    .product-detail-image {
        max-height: 250px;
        margin: 15px 0;
    }
    
    .product-detail-price-section {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .product-price-row {
        gap: 8px;
    }
    
    .product-price-current {
        font-size: 22px;
    }
    
    .product-price-original {
        font-size: 15px;
    }
    
    .product-price-discount {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .buy-now-btn-modern {
        padding: 12px 20px;
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .affiliate-section {
        padding-top: 18px;
    }
    
    .affiliate-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .affiliate-copy-btn,
    .affiliate-join-btn {
        padding: 11px 18px;
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .product-author-card {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .author-avatar i {
        font-size: 20px;
    }
    
    .author-name {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .author-meta {
        flex-direction: column;
        gap: 6px;
    }
    
    .author-meta span {
        font-size: 12px;
    }
    
    .product-description-section {
        padding: 18px;
    }
    
    .product-short-description {
        font-size: 15px;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }
    
    .product-full-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .product-full-description p {
        margin-bottom: 12px;
    }
    
    .product-tags {
        padding-top: 18px;
        margin-top: 20px;
        font-size: 13px;
    }
    
    .sidebar-widget {
        padding: 18px;
        margin-bottom: 18px;
    }
    
    .sidebar-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .sidebar-categories {
        gap: 8px;
    }
    
    .sidebar-category-item {
        padding: 10px;
        gap: 10px;
    }
    
    .sidebar-category-image {
        width: 45px;
        height: 45px;
    }
    
    .sidebar-category-content h5 {
        font-size: 13px;
    }
    
    .related-software-section {
        padding: 30px 0 50px 0;
    }
    
    .related-software-section .section-title-modern {
        margin-bottom: 30px;
    }
    
    .related-software-section .section-title-modern h2 {
        font-size: 22px;
    }
    
    .related-software-section .section-title-modern p {
        font-size: 13px;
    }
    
    .page-content-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .related-software-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.modern-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="footer-grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.5;
}

.footer-main-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 40px 0;
}

.footer-main-content .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom-bar .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.footer-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom-bar {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-copyright-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-company-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-company-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Go to Top Button */
.go-top-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.go-top-wrap {
    position: relative;
}

.go-top-btn-wrap {
    position: relative;
}

.go-top {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.go-top:hover::before {
    width: 300px;
    height: 300px;
}

.go-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.go-top i {
    position: relative;
    z-index: 1;
    display: block;
    animation: bounce 2s infinite;
}

.go-top i:last-child {
    position: absolute;
    opacity: 0.5;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-main-content .container-fluid,
    .footer-bottom-bar .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .footer-main-content {
        padding: 50px 0 35px 0;
    }
    
    .footer-main-content .container-fluid,
    .footer-bottom-bar .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .go-top-area {
        bottom: 20px;
        right: 20px;
    }
    
    .go-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .footer-main-content {
        padding: 40px 0 30px 0;
    }
    
    .footer-main-content .container-fluid,
    .footer-bottom-bar .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-widget {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer-badges {
        align-items: center;
    }
    
    .footer-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-bottom-bar {
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-copyright-text,
    .footer-company-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer-company-text {
        text-align: center !important;
    }
    
    .footer-bottom-bar .row {
        text-align: center;
    }
    
    .footer-bottom-bar .col-lg-6 {
        margin-bottom: 10px;
    }
    
    .footer-bottom-bar .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    .go-top-area {
        bottom: 15px;
        right: 15px;
    }
    
    .go-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
