/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Cart
 *
 * This block allows you to customize theme colors and styles for the entire Nexus Cart template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* Footer Styles - Matching plainohost.com */
.main-footer {
    background-color: #0f1a2f;
    padding: 60px 0 30px;
    color: #fff;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e63946;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b9cc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #e63946;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b9cc;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 20px;
    }
}
/* Homepage Styles - Using your custom colors */
:root {
    --primary: #e49527;
    --primary-dark: #d48720;
    --secondary: #222222;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --dark: #343a40;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Color ideas from additional stylesheet */
:root {
    /* Primary Colors */
    --primary-orange: #e49527;
    --primary-orange-dark: #d48720;
    --primary-blue: #3498db;
    --primary-red: #e74c3c;
    --primary-yellow: #f1c40f;
    --primary-green: #2ecc71;
    --primary-purple: #9b59b6;
    --primary-dark-blue: #34495e;
    --primary-orange-bright: #e67e22;
    --primary-teal: #16a085;
    
    /* Action Card Colors */
    --action-blue: #3498db;
    --action-red: #e74c3c;
    --action-yellow: #f1c40f;
    --action-gray: #95a5a6;
    --action-green: #2ecc71;
    --action-purple: #9b59b6;
    --action-dark: #34495e;
    --action-orange: #e67e22;
    --action-teal: #16a085;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #343a40;
    
    /* Text Colors */
    --text-dark: #222222;
    --text-gray: #6c757d;
    --text-light-gray: #adb5bd;
    
    /* Border Colors */
    --border-light: #e9ecef;
    --border-gray: #444;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #e49527 0%, #d48720 100%);
    --gradient-blue: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    --gradient-dark: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    
    /* Overlay Colors */
    --overlay-dark: rgba(0,0,0,0.5);
    --overlay-darker: rgba(0,0,0,0.7);
    --overlay-light: rgba(255,255,255,0.1);
    --overlay-lighter: rgba(255,255,255,0.2);
    
    /* Shadow Colors */
    --shadow-color: rgba(0,0,0,0.1);
    --shadow-darker: rgba(0,0,0,0.15);
    --shadow-primary: rgba(228, 149, 39, 0.15);
    --shadow-primary-light: rgba(228, 149, 39, 0.1);
    --shadow-primary-medium: rgba(228, 149, 39, 0.3);
    
    /* Status Colors */
    --status-success: #28a745;
    --status-info: #17a2b8;
    --status-warning: #ffc107;
    --status-danger: #dc3545;
    --status-success-dark: #218838;
    --status-info-dark: #138496;
    --status-warning-dark: #e0a800;
    --status-danger-dark: #c82333;
    
    /* Icon Background Colors */
    --icon-bg-blue: rgba(52, 152, 219, 0.1);
    --icon-bg-red: rgba(231, 76, 60, 0.1);
    --icon-bg-yellow: rgba(241, 196, 15, 0.1);
    --icon-bg-gray: rgba(149, 165, 166, 0.1);
    --icon-bg-green: rgba(46, 204, 113, 0.1);
    --icon-bg-purple: rgba(155, 89, 182, 0.1);
    --icon-bg-dark: rgba(52, 73, 94, 0.1);
    --icon-bg-orange: rgba(230, 126, 34, 0.1);
    --icon-bg-teal: rgba(22, 160, 133, 0.1);
    
    /* Button Colors */
    --btn-primary-bg: #e49527;
    --btn-primary-hover: #d48720;
    --btn-success-bg: #28a745;
    --btn-success-hover: #218838;
    --btn-link-color: #ffffff;
    
    /* Form Colors */
    --input-border: #e9ecef;
    --input-focus-border: #e49527;
    --input-focus-shadow: rgba(228, 149, 39, 0.1);
    
    /* Navigation Colors */
    --nav-link-hover: #e49527;
    --nav-login-bg: #f8f9fa;
    --nav-login-hover: #e9ecef;
    --nav-start-bg: #e49527;
    --nav-start-hover: #d48720;
    
    /* Product Card Colors */
    --product-card-border: #e49527;
    --product-icon-color: #e49527;
    
    /* Guarantee Banner Colors */
    --guarantee-border: #e49527;
    --guarantee-icon: #e49527;
    
    /* Footer Colors */
    --footer-bg: #222222;
    --footer-text: #ffffff;
    --footer-link: #adb5bd;
    --footer-link-hover: #e49527;
    --footer-border: #444;
    
    /* Mobile Menu Colors */
    --mobile-menu-bg: #ffffff;
    --mobile-menu-border: #e9ecef;
    --mobile-menu-link-hover: #f8f9fa;
    --mobile-menu-overlay: rgba(0,0,0,0.5);
    
    /* Back to Top Button */
    --back-to-top-bg: #e49527;
    --back-to-top-hover: #d48720;
    
    /* Hero Section */
    --hero-gradient: linear-gradient(135deg, #e49527 0%, #d48720 100%);
    --hero-overlay: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    --hero-overlay-mobile: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    --hero-text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
    /* Domain Search Section */
    --domain-search-gradient: linear-gradient(135deg, #e49527 0%, #d48720 100%);
    --domain-search-text: #ffffff;
    
    /* Breadcrumb Colors */
    --breadcrumb-bg: #f8f9fa;
    --breadcrumb-border: #e9ecef;
    --breadcrumb-link: #e49527;
    --breadcrumb-text: #6c757d;
    
    /* Section Colors */
    --section-title-color: #222222;
    --section-subtitle-color: #6c757d;
    
    /* Card Colors */
    --card-bg: #ffffff;
    --card-border: #e9ecef;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --card-hover-shadow: 0 15px 40px rgba(0,0,0,0.15);
    --card-hover-border: #e49527;
    
    /* Text Colors */
    --text-primary: #e49527;
    --text-secondary: #222222;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    
    /* Link Colors */
    --link-color: #e49527;
    --link-hover-color: #d48720;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 50px;
    --radius-full: 50%;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 25px;
    --spacing-xxl: 30px;
    
    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 22px;
    --font-xxl: 24px;
    --font-xxxl: 28px;
    --font-hero: 36px;
    --font-hero-mobile: 28px;
    --font-hero-small: 24px;
    
    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Z-Index */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Opacity */
    --opacity-light: 0.1;
    --opacity-medium: 0.3;
    --opacity-heavy: 0.5;
    --opacity-full: 1;
}

.home-services-section,
.help-section,
.account-section {
    padding: 60px 0;
    background: var(--white);
}

.help-section {
    background: var(--light);
}

.section-title {
    color: var(--secondary);
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(228, 149, 39, 0.15);
}

.service-card-content {
    padding: 40px 30px;
    text-align: center;
}

.service-title {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-service:hover {
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 149, 39, 0.3);
}

.btn-service i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(228, 149, 39, 0.2);
    text-decoration: none;
    color: var(--primary);
}

.help-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.help-card:hover .help-card-icon {
    background: var(--primary);
}

.help-card-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.help-card:hover .help-card-icon i {
    color: var(--white);
}

.help-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.help-card p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Account Grid */
.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.account-card {
    background: var(--secondary);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.account-card:hover {
    transform: translateY(-5px);
    background: var(--primary);
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(228, 149, 39, 0.3);
}

.account-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.account-card:hover .account-card-icon {
    background: rgba(255,255,255,0.2);
}

.account-card-icon i {
    font-size: 30px;
    color: var(--white);
}

.account-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.account-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.account-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* Footer Styles - Using your custom colors */
.main-footer {
    background: var(--secondary);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .account-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-content {
        padding: 30px 20px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .home-services-section,
    .help-section,
    .account-section {
        padding: 40px 0;
    }
    
    .help-grid,
    .account-grid {
        grid-template-columns: 1fr;
    }
}