/* Share Your Idea Success Page - CSS Only Styling */
/* No HTML changes - Styling existing template structure */

.share-your-idea-success {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.share-your-idea-success * {
    box-sizing: border-box;
}

/* Container */
.share-your-idea-success .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Hide Breadcrumb - Not in design */
.share-your-idea-success .breadcrumb-container {
    display: none;
}

/* Thank You Section - Main Content Area */
.share-your-idea-success .thank-you-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 60%);
    padding: 80px 20px 50px;
    text-align: center;
    position: relative;
    min-height: 460px;
}

/* Success Icon - Shield */
.share-your-idea-success .success-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 35px;
    animation: bounceIn 0.6s ease-out;
}

.share-your-idea-success .success-icon svg {
    width: 90px;
    height: 110px;
    filter: drop-shadow(0 4px 6px rgba(139, 195, 74, 0.2));
}

/* Shield green color exact match */
.share-your-idea-success .success-icon svg path:first-child {
    fill: #8BC34A !important;
    stroke: #7CB342 !important;
}

/* Thank You Heading */
.share-your-idea-success .thank-you-heading {
    font-size: 38px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 25px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Thank You Message */
.share-your-idea-success .thank-you-message {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0 auto 45px;
    max-width: 600px;
    padding: 0 20px;
}

/* Back to Home Button - Orange Style */
.share-your-idea-success .btn-back-home {
    display: inline-block;
    background: #FF6633;
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-your-idea-success .btn-back-home:hover {
    background: #E85A2C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 51, 0.25);
    color: #ffffff;
    text-decoration: none;
}

.share-your-idea-success .thank-you-heading {
    font-family: 'BarlowBlack';
    color: #000 !important;
    font-size: 30px !important;
    line-height: 36px;
}
.share-your-idea-success .thank-you-heading {
    font-size: 36px !important;
    line-height: 43px;
    letter-spacing: .04em;
    margin-bottom: 15px;
}
.share-your-idea-success .thank-you-message {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .04em;
    color: #666;
    font-family: 'Barlow';
    margin-bottom: 24px;
}
.share-your-idea-success .btn-back-home {
    padding: 12px 30px;
    letter-spacing: .06em;
}
.cms-thank-you .report-issue-faq {
    background-color: #fff;
}


/* Animation for shield icon */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-20px);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .share-your-idea-success .thank-you-section {
        padding: 60px 15px 80px;
        min-height: 400px;
    }
    
    .share-your-idea-success .success-icon svg {
        width: 75px;
        height: 90px;
    }
    
    .share-your-idea-success .thank-you-heading {
        font-size: 28px;
        margin: 0 0 20px 0;
    }
    
    .share-your-idea-success .thank-you-message {
        margin: 0 auto 35px;
        padding: 0 15px;
        font-size: 18px;
        line-height: 1.6;
        color: #666 !important;
    }
    
    .share-your-idea-success .btn-back-home {
        padding: 12px 30px;
        font-size: 14px;
        padding: 12px 30px;
        font-family: 'Barlow';
        line-height: 20px;
        letter-spacing: .06em;
        box-shadow: none;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .share-your-idea-success .thank-you-section {
        padding: 50px 15px 70px;
    }
    
    .share-your-idea-success .success-icon svg {
        width: 65px;
        height: 80px;
    }
    
    .share-your-idea-success .thank-you-heading {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .share-your-idea-success .thank-you-message {
        font-size: 18px;
        line-height: 1.6;
        color: #666 !important;
    }
    
    .share-your-idea-success .btn-back-home {
        padding: 11px 25px;
        font-size: 14px;
        padding: 12px 30px;
        font-family: 'Barlow';
        line-height: 20px;
        letter-spacing: .06em;
        box-shadow: none;
        font-weight: 700;
    }
}

/* Clean white background for content area */
.share-your-idea-success {
    background-color: #ffffff;
}

/* Ensure proper spacing from header/footer */
.page-wrapper .share-your-idea-success {
    margin-top: 0;
    margin-bottom: 0;
}

/* Override any default Magento styles that might interfere */
.share-your-idea-success h1,
.share-your-idea-success p,
.share-your-idea-success a {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Ensure button doesn't inherit unwanted styles */
.share-your-idea-success .btn-back-home:focus,
.share-your-idea-success .btn-back-home:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 102, 51, 0.2);
}

/* Center content properly */
.share-your-idea-success .thank-you-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Print styles */
@media print {
    .share-your-idea-success .breadcrumb-container {
        display: none;
    }
    
    .share-your-idea-success .thank-you-section {
        background: white;
        padding: 40px 20px;
    }
    
    .share-your-idea-success .btn-back-home {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .share-your-idea-success .thank-you-heading {
        color: #000000;
    }
    
    .share-your-idea-success .thank-you-message {
        color: #333333;
    }
    
    .share-your-idea-success .btn-back-home {
        border: 2px solid #FF6633;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .share-your-idea-success .thank-you-section {
        background: linear-gradient(to bottom, #1a1a1a 0%, #2a2a2a 60%);
    }
    
    .share-your-idea-success .thank-you-heading {
        color: #ffffff;
    }
    
    .share-your-idea-success .thank-you-message {
        color: #cccccc;
    }
}