.elementor-1412 .elementor-element.elementor-element-76be4b3{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}@media(min-width:768px){.elementor-1412 .elementor-element.elementor-element-76be4b3{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-b9dcb6c */:root {
            --primary: #FCB018; /* Sun Yellow */
            --secondary: #CA7E40; /* Earth Bronze */
            --bg: #ffffff;
            --text-main: #333333;
            --text-light: #777777;
            --card-bg: #fafafa;
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
            --warning: #d97706; /* Amber for warnings */
        }
        .container {
            width: 100%;
            max-width: 900px;
            padding: 40px;
            background: var(--bg);
            border-radius: 20px;
            animation: fadeIn 1s ease-out;
        }

        /* Header & Solar Animation */
        header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        h1 {
            font-weight: 300;
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        p.subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .sun-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            margin: 0 auto 20px;
            box-shadow: 0 0 20px var(--primary);
            animation: pulse 3s infinite ease-in-out;
            position: relative;
        }

        .sun-icon::after {
            content: '';
            position: absolute;
            top: -10px; left: -10px; right: -10px; bottom: -10px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: expand 3s infinite;
        }

        /* Input Section */
        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .input-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        input[type="number"] {
            width: 100%;
            padding: 15px;
            font-size: 1.2rem;
            border: 2px solid #eee;
            border-radius: 12px;
            background: var(--card-bg);
            color: var(--text-main);
            transition: all 0.3s;
        }

        input[type="number"]:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(252, 176, 24, 0.1);
        }

        .suffix {
            position: absolute;
            right: 15px;
            color: var(--text-light);
            font-weight: 500;
        }

        input[type="range"] {
            width: 100%;
            margin-top: 10px;
            accent-color: var(--secondary);
            cursor: pointer;
        }

        /* Results Section */
        .results-section {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid #f0f0f0;
        }

        .result-card {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; 
        }

        .result-card:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .result-label {
            font-size: 1rem;
            color: var(--text-light);
        }

        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .highlight {
            color: var(--secondary);
        }

        .big-highlight {
            font-size: 2rem;
            color: var(--primary);
            text-shadow: 0 2px 10px rgba(252, 176, 24, 0.2);
        }

        /* Warning Box */
        .cap-warning {
            display: none; 
            width: 100%;
            margin-top: 8px;
            font-size: 0.85rem;
            color: var(--warning);
            background: rgba(252, 176, 24, 0.1);
            padding: 8px 12px;
            border-radius: 8px;
            border-left: 3px solid var(--warning);
            line-height: 1.4;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 20px var(--primary); }
            50% { transform: scale(1.05); box-shadow: 0 0 40px var(--primary); }
            100% { transform: scale(1); box-shadow: 0 0 20px var(--primary); }
        }

        @keyframes expand {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .calculator-grid {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */