/* ===== DAILY SALES CALCULATOR STYLES - SCOPED ===== */
    .dsc-wrapper * {
        font-family: 'Inter', sans-serif;
    }
    .dsc-wrapper {
        background: linear-gradient(135deg, #f0f7f5 0%, #e8f5e9 50%, #f0f7f5 100%);
        min-height: 100vh;
    }

    /* Hero Section */
    .dsc-hero {
        background: linear-gradient(135deg, #2a5750 0%, #1a3d37 40%, #2a5750 100%);
        padding: 50px 0 40px;
        position: relative;
        overflow: hidden;
    }
    .dsc-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(107,186,164,0.15) 0%, transparent 70%);
        border-radius: 50%;
    }
    .dsc-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(136,196,101,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    .dsc-hero h1 {
        color: #ffffff;
        font-weight: 800;
        font-size: 2.5rem;
        position: relative;
        z-index: 1;
    }
    .dsc-hero h1 .dsc-highlight {
        background: linear-gradient(90deg, #6bbaa4, #88c465);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .dsc-hero p {
        color: rgba(255,255,255,0.85);
        font-size: 1.1rem;
        position: relative;
        z-index: 1;
    }
    .dsc-hero .dsc-rating-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 50px;
        padding: 8px 20px;
        color: #ffffff;
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
    }
    .dsc-hero .dsc-rating-badge .bi-star-fill {
        color: #ffc107;
    }
    .dsc-breadcrumb-area {
        background: rgba(42,87,80,0.05);
        padding: 12px 0;
        border-bottom: 1px solid rgba(42,87,80,0.08);
    }
    .dsc-breadcrumb-area .breadcrumb {
        margin: 0;
        font-size: 0.85rem;
    }
    .dsc-breadcrumb-area .breadcrumb a {
        color: #2a5750;
        text-decoration: none;
    }
    .dsc-breadcrumb-area .breadcrumb a:hover {
        color: #6bbaa4;
    }
    .dsc-breadcrumb-area .breadcrumb-item.active {
        color: #6bbaa4;
    }

    /* Ad Sidebar Placeholders */
    .dsc-ad-space {
        background: linear-gradient(135deg, rgba(42,87,80,0.03), rgba(107,186,164,0.05));
        border: 2px dashed rgba(42,87,80,0.15);
        border-radius: 12px;
        padding: 30px 15px;
        text-align: center;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: sticky;
        top: 20px;
    }
    .dsc-ad-space .dsc-ad-label {
        color: rgba(42,87,80,0.4);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }
    .dsc-ad-space .dsc-ad-icon {
        font-size: 2rem;
        color: rgba(42,87,80,0.15);
        margin-bottom: 10px;
    }

    /* Calculator Card */
    .dsc-calc-card {
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 10px 50px rgba(42,87,80,0.08), 0 2px 10px rgba(0,0,0,0.04);
        border: 1px solid rgba(42,87,80,0.06);
        overflow: hidden;
    }
    .dsc-calc-header {
        background: linear-gradient(135deg, #2a5750, #3a7068);
        padding: 24px 30px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .dsc-calc-header-icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.15);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #88c465;
    }
    .dsc-calc-header h2 {
        color: #ffffff;
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0;
    }
    .dsc-calc-header p {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
        margin: 0;
    }
    .dsc-calc-body {
        padding: 30px;
    }

    /* Tab Styles */
    .dsc-tab-nav {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 28px;
        padding: 5px;
        background: rgba(42,87,80,0.04);
        border-radius: 14px;
    }
    .dsc-tab-btn {
        flex: 1;
        min-width: 150px;
        padding: 12px 16px;
        border: none;
        background: transparent;
        color: #2a5750;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .dsc-tab-btn:hover {
        background: rgba(42,87,80,0.08);
    }
    .dsc-tab-btn.active {
        background: #2a5750;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(42,87,80,0.3);
    }
    .dsc-tab-btn.active .bi {
        color: #88c465;
    }
    .dsc-tab-content {
        display: none;
    }
    .dsc-tab-content.active {
        display: block;
        animation: dscFadeIn 0.4s ease;
    }
    @keyframes dscFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Form Controls */
    .dsc-form-group {
        margin-bottom: 20px;
    }
    .dsc-form-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.88rem;
        font-weight: 600;
        color: #2a5750;
        margin-bottom: 8px;
    }
    .dsc-form-group label .bi {
        color: #6bbaa4;
        font-size: 1rem;
    }
    .dsc-form-group label .dsc-tooltip-icon {
        width: 18px;
        height: 18px;
        background: rgba(42,87,80,0.08);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        color: #2a5750;
        cursor: help;
        margin-left: auto;
        font-weight: 700;
    }
    .dsc-input-group {
        position: relative;
    }
    .dsc-input-group .dsc-input-prefix {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.95rem;
        font-weight: 600;
        color: #6bbaa4;
        z-index: 2;
    }
    .dsc-input-group .dsc-input-suffix {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.85rem;
        font-weight: 500;
        color: #999;
        z-index: 2;
    }
    .dsc-input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid rgba(42,87,80,0.12);
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
        color: #2a5750;
        background: #ffffff;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }
    .dsc-input:focus {
        outline: none;
        border-color: #6bbaa4;
        box-shadow: 0 0 0 4px rgba(107,186,164,0.15);
    }
    .dsc-input.has-prefix {
        padding-left: 35px;
    }
    .dsc-input.has-suffix {
        padding-right: 50px;
    }
    .dsc-select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid rgba(42,87,80,0.12);
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
        color: #2a5750;
        background: #ffffff;
        transition: all 0.3s ease;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232a5750' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px;
    }
    .dsc-select:focus {
        outline: none;
        border-color: #6bbaa4;
        box-shadow: 0 0 0 4px rgba(107,186,164,0.15);
    }

    /* Buttons */
    .dsc-btn-primary {
        background: linear-gradient(135deg, #2a5750, #3a7068);
        color: #ffffff;
        border: none;
        padding: 15px 30px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: center;
        font-family: 'Inter', sans-serif;
    }
    .dsc-btn-primary:hover {
        background: linear-gradient(135deg, #1e433d, #2a5750);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(42,87,80,0.3);
    }
    .dsc-btn-secondary {
        background: transparent;
        color: #2a5750;
        border: 2px solid rgba(42,87,80,0.2);
        padding: 13px 25px;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        justify-content: center;
        font-family: 'Inter', sans-serif;
    }
    .dsc-btn-secondary:hover {
        background: rgba(42,87,80,0.06);
        border-color: rgba(42,87,80,0.3);
    }

    /* Results Area */
    .dsc-results-area {
        display: none;
        margin-top: 25px;
    }
    .dsc-results-area.show {
        display: block;
        animation: dscSlideUp 0.5s ease;
    }
    @keyframes dscSlideUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .dsc-result-banner {
        background: linear-gradient(135deg, #2a5750, #1a3d37);
        border-radius: 16px;
        padding: 25px;
        text-align: center;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
    }
    .dsc-result-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(136,196,101,0.15), transparent);
        border-radius: 50%;
    }
    .dsc-result-banner .dsc-result-label {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }
    .dsc-result-banner .dsc-result-value {
        color: #88c465;
        font-size: 2.5rem;
        font-weight: 800;
        position: relative;
        z-index: 1;
    }
    .dsc-result-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .dsc-result-item {
        background: linear-gradient(135deg, rgba(42,87,80,0.03), rgba(107,186,164,0.06));
        border: 1px solid rgba(42,87,80,0.08);
        border-radius: 14px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    .dsc-result-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(42,87,80,0.1);
    }
    .dsc-result-item .dsc-ri-icon {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #6bbaa4, #88c465);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        color: #ffffff;
        font-size: 1.1rem;
    }
    .dsc-result-item .dsc-ri-label {
        color: #666;
        font-size: 0.78rem;
        font-weight: 500;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .dsc-result-item .dsc-ri-value {
        color: #2a5750;
        font-size: 1.3rem;
        font-weight: 700;
    }

    /* Breakdown Table */
    .dsc-table-wrap {
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid rgba(42,87,80,0.08);
        overflow: hidden;
        margin-top: 20px;
    }
    .dsc-table-wrap .dsc-tw-header {
        background: rgba(42,87,80,0.04);
        padding: 15px 20px;
        font-weight: 700;
        color: #2a5750;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .dsc-table-wrap table {
        width: 100%;
        border-collapse: collapse;
    }
    .dsc-table-wrap th {
        background: #2a5750;
        color: #ffffff;
        padding: 12px 20px;
        font-size: 0.82rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
    }
    .dsc-table-wrap td {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(42,87,80,0.06);
        font-size: 0.9rem;
        color: #444;
    }
    .dsc-table-wrap tr:last-child td {
        border-bottom: none;
    }
    .dsc-table-wrap tr:hover td {
        background: rgba(107,186,164,0.04);
    }
    .dsc-table-wrap .dsc-total-row td {
        background: rgba(42,87,80,0.04);
        font-weight: 700;
        color: #2a5750;
    }

    /* Feature Cards */
    .dsc-feature-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        border: 1px solid rgba(42,87,80,0.06);
        transition: all 0.3s ease;
        height: 100%;
    }
    .dsc-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(42,87,80,0.1);
    }
    .dsc-feature-icon {
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, rgba(42,87,80,0.08), rgba(107,186,164,0.12));
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 1.5rem;
        color: #2a5750;
    }
    .dsc-feature-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #2a5750;
        margin-bottom: 10px;
    }
    .dsc-feature-card p {
        color: #666;
        font-size: 0.88rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Content Section */
    .dsc-content-section {
        padding: 50px 0;
    }
    .dsc-section-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: #2a5750;
        margin-bottom: 15px;
    }
    .dsc-section-subtitle {
        color: #666;
        font-size: 1.05rem;
        margin-bottom: 35px;
    }
    .dsc-content-block {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(42,87,80,0.06);
        box-shadow: 0 5px 30px rgba(42,87,80,0.05);
    }
    .dsc-content-block h2 {
        font-size: 1.6rem;
        font-weight: 800;
        color: #2a5750;
        margin-bottom: 18px;
    }
    .dsc-content-block h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2a5750;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    .dsc-content-block p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    .dsc-content-block ul, .dsc-content-block ol {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.8;
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .dsc-content-block ul li, .dsc-content-block ol li {
        margin-bottom: 8px;
    }
    .dsc-formula-box {
        background: linear-gradient(135deg, #2a5750, #3a7068);
        border-radius: 14px;
        padding: 25px;
        margin: 20px 0;
        text-align: center;
    }
    .dsc-formula-box .dsc-fb-label {
        color: rgba(255,255,255,0.7);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    .dsc-formula-box .dsc-fb-formula {
        color: #88c465;
        font-size: 1.2rem;
        font-weight: 700;
    }

    /* FAQ Section */
    .dsc-faq-item {
        background: #ffffff;
        border: 1px solid rgba(42,87,80,0.08);
        border-radius: 14px;
        margin-bottom: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .dsc-faq-item:hover {
        box-shadow: 0 5px 20px rgba(42,87,80,0.08);
    }
    .dsc-faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        font-weight: 600;
        color: #2a5750;
        font-size: 0.95rem;
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
        font-family: 'Inter', sans-serif;
    }
    .dsc-faq-question:hover {
        background: rgba(42,87,80,0.02);
    }
    .dsc-faq-question .dsc-faq-toggle {
        width: 30px;
        height: 30px;
        background: rgba(42,87,80,0.06);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    .dsc-faq-item.active .dsc-faq-question .dsc-faq-toggle {
        background: #2a5750;
        color: #ffffff;
        transform: rotate(180deg);
    }
    .dsc-faq-answer {
        display: none;
        padding: 0 25px 20px;
        color: #555;
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .dsc-faq-item.active .dsc-faq-answer {
        display: block;
        animation: dscFadeIn 0.3s ease;
    }

    /* Modal/Popup Styles */
    .dsc-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
    }
    .dsc-popup-overlay.show {
        display: flex;
        animation: dscFadeIn 0.3s ease;
    }
    .dsc-popup-box {
        background: #ffffff;
        border-radius: 20px;
        padding: 35px;
        max-width: 420px;
        width: 90%;
        text-align: center;
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        animation: dscPopIn 0.4s ease;
    }
    @keyframes dscPopIn {
        from { opacity: 0; transform: scale(0.8) translateY(20px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .dsc-popup-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
    }
    .dsc-popup-icon.error {
        background: rgba(220,53,69,0.1);
        color: #dc3545;
    }
    .dsc-popup-icon.success {
        background: rgba(136,196,101,0.15);
        color: #88c465;
    }
    .dsc-popup-icon.info {
        background: rgba(42,87,80,0.1);
        color: #2a5750;
    }
    .dsc-popup-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2a5750;
        margin-bottom: 10px;
    }
    .dsc-popup-msg {
        color: #666;
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .dsc-popup-close-btn {
        background: linear-gradient(135deg, #2a5750, #3a7068);
        color: #ffffff;
        border: none;
        padding: 12px 40px;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }
    .dsc-popup-close-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(42,87,80,0.3);
    }

    /* Copy Button */
    .dsc-copy-btn {
        background: rgba(42,87,80,0.08);
        border: none;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #2a5750;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Inter', sans-serif;
    }
    .dsc-copy-btn:hover {
        background: #2a5750;
        color: #ffffff;
    }

    /* Related Tools */
    .dsc-related-tool {
        background: #ffffff;
        border: 1px solid rgba(42,87,80,0.08);
        border-radius: 14px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .dsc-related-tool:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(42,87,80,0.1);
        text-decoration: none;
    }
    .dsc-related-tool .dsc-rt-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(42,87,80,0.08), rgba(107,186,164,0.12));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #2a5750;
        flex-shrink: 0;
    }
    .dsc-related-tool .dsc-rt-name {
        font-weight: 600;
        color: #2a5750;
        font-size: 0.9rem;
    }
    .dsc-related-tool .dsc-rt-desc {
        color: #888;
        font-size: 0.78rem;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .dsc-ad-space {
            display: none;
        }
    }
    @media (max-width: 767px) {
        .dsc-hero h1 {
            font-size: 1.8rem;
        }
        .dsc-calc-body {
            padding: 20px;
        }
        .dsc-tab-btn {
            min-width: 100%;
            font-size: 0.82rem;
        }
        .dsc-result-banner .dsc-result-value {
            font-size: 1.8rem;
        }
        .dsc-result-grid {
            grid-template-columns: 1fr 1fr;
        }
        .dsc-content-block {
            padding: 25px;
        }
    }
    @media (max-width: 480px) {
        .dsc-result-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Print */
    @media print {
        .dsc-ad-space, .dsc-hero, .dsc-tab-nav, .dsc-btn-primary, .dsc-btn-secondary {
            display: none !important;
        }
    }